From 819db6470099f9833d5a5027020c369d4b40e323 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Sat, 31 Aug 2024 12:37:42 +0200 Subject: Add boxs on alert page --- components/ParallaxScrollView.tsx | 31 ++++++++++++------------------- 1 file changed, 12 insertions(+), 19 deletions(-) (limited to 'components') 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(); + const theme = useColorScheme() ?? 'light'; return ( - - - CAS4 - - {children} - + + CAS4 + + {children} ); } @@ -37,7 +31,6 @@ const styles = StyleSheet.create({ flex: 1, }, nav: { - backgroundColor: 'rgba(10, 10, 10, .5)', paddingTop: 50, padding: 10, }, -- cgit v1.2.3-18-g5258