From ae63532503eb0b5c7a60d18ef17504c0632d508d Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Thu, 29 Aug 2024 18:27:23 +0200 Subject: Login page --- components/HelloWave.tsx | 37 ------------------------------ components/ParallaxScrollView.tsx | 47 +++++++++++++-------------------------- 2 files changed, 15 insertions(+), 69 deletions(-) delete mode 100644 components/HelloWave.tsx (limited to 'components') diff --git a/components/HelloWave.tsx b/components/HelloWave.tsx deleted file mode 100644 index f4b6ea5..0000000 --- a/components/HelloWave.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import { StyleSheet } from 'react-native'; -import Animated, { - useSharedValue, - useAnimatedStyle, - withTiming, - withRepeat, - withSequence, -} from 'react-native-reanimated'; - -import { ThemedText } from '@/components/ThemedText'; - -export function HelloWave() { - const rotationAnimation = useSharedValue(0); - - rotationAnimation.value = withRepeat( - withSequence(withTiming(25, { duration: 150 }), withTiming(0, { duration: 150 })), - 4 // Run the animation 4 times - ); - - const animatedStyle = useAnimatedStyle(() => ({ - transform: [{ rotate: `${rotationAnimation.value}deg` }], - })); - - return ( - - 👋 - - ); -} - -const styles = StyleSheet.create({ - text: { - fontSize: 28, - lineHeight: 32, - marginTop: -6, - }, -}); diff --git a/components/ParallaxScrollView.tsx b/components/ParallaxScrollView.tsx index 0a35419..c54cbae 100644 --- a/components/ParallaxScrollView.tsx +++ b/components/ParallaxScrollView.tsx @@ -1,5 +1,5 @@ import type { PropsWithChildren, ReactElement } from 'react'; -import { StyleSheet, useColorScheme } from 'react-native'; +import { StyleSheet, Text, View, useColorScheme } from 'react-native'; import Animated, { interpolate, useAnimatedRef, @@ -12,47 +12,19 @@ import { ThemedView } from '@/components/ThemedView'; const HEADER_HEIGHT = 250; type Props = PropsWithChildren<{ - headerImage: ReactElement; - headerBackgroundColor: { dark: string; light: string }; }>; export default function ParallaxScrollView({ children, - headerImage, - headerBackgroundColor, }: Props) { - const colorScheme = useColorScheme() ?? 'light'; const scrollRef = useAnimatedRef(); - const scrollOffset = useScrollViewOffset(scrollRef); - - const headerAnimatedStyle = useAnimatedStyle(() => { - return { - transform: [ - { - translateY: interpolate( - scrollOffset.value, - [-HEADER_HEIGHT, 0, HEADER_HEIGHT], - [-HEADER_HEIGHT / 2, 0, HEADER_HEIGHT * 0.75] - ), - }, - { - scale: interpolate(scrollOffset.value, [-HEADER_HEIGHT, 0, HEADER_HEIGHT], [2, 1, 1]), - }, - ], - }; - }); return ( - - {headerImage} - + + CAS4 + {children} @@ -63,6 +35,17 @@ const styles = StyleSheet.create({ container: { flex: 1, }, + nav: { + backgroundColor: '#fcfcfc', + paddingTop: 50, + padding: 10, + }, + navText: { + textAlign: 'center', + fontFamily: 'SpaceMono', + fontSize: 24, + fontWeight: 'bold' + }, header: { height: 250, overflow: 'hidden', -- cgit v1.2.3-18-g5258