diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-08-31 12:37:42 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-08-31 12:37:42 +0200 |
commit | 819db6470099f9833d5a5027020c369d4b40e323 (patch) | |
tree | 62f68555b5e07443466fbb7e27bb44ce0ad5efe9 /components/ParallaxScrollView.tsx | |
parent | 509785982a1b4ac9ab145bac90d97be7044228c4 (diff) |
Add boxs on alert page
Diffstat (limited to 'components/ParallaxScrollView.tsx')
-rw-r--r-- | components/ParallaxScrollView.tsx | 31 |
1 files changed, 12 insertions, 19 deletions
diff --git a/components/ParallaxScrollView.tsx b/components/ParallaxScrollView.tsx index d803ee6..2d5e379 100644 --- a/components/ParallaxScrollView.tsx +++ b/components/ParallaxScrollView.tsx @@ -1,33 +1,27 @@ -import type { PropsWithChildren, ReactElement } from 'react'; -import { StyleSheet, Text, View, useColorScheme } from 'react-native'; -import Animated, { - interpolate, - useAnimatedRef, - useAnimatedStyle, - useScrollViewOffset, -} from 'react-native-reanimated'; +import type { PropsWithChildren, } from 'react'; +import { StyleSheet, View, useColorScheme } from 'react-native'; import { ThemedView } from '@/components/ThemedView'; import { ThemedText } from './ThemedText'; -const HEADER_HEIGHT = 250; +type Props = PropsWithChildren<{}>; -type Props = PropsWithChildren<{ -}>; export default function ParallaxScrollView({ children, }: Props) { - const scrollRef = useAnimatedRef<Animated.ScrollView>(); + const theme = useColorScheme() ?? 'light'; return ( <ThemedView style={styles.container}> - <Animated.ScrollView ref={scrollRef} scrollEventThrottle={16}> - <View style={styles.nav}> - <ThemedText type="title">CAS4</ThemedText> - </View> - <ThemedView style={styles.content}>{children}</ThemedView> - </Animated.ScrollView> + <View style={{ + paddingTop: 50, + padding: 10, + backgroundColor: (theme === 'light' ? 'rgba(0, 0, 0, .5)' : 'rgba(100, 100, 100, .5)'), + }}> + <ThemedText type="title" style={{ color: 'white' }}>CAS4</ThemedText> + </View> + <ThemedView style={styles.content}>{children}</ThemedView> </ThemedView> ); } @@ -37,7 +31,6 @@ const styles = StyleSheet.create({ flex: 1, }, nav: { - backgroundColor: 'rgba(10, 10, 10, .5)', paddingTop: 50, padding: 10, }, |