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/ParallaxScrollView.tsx | 47 +++++++++++++-------------------------- 1 file changed, 15 insertions(+), 32 deletions(-) (limited to 'components/ParallaxScrollView.tsx') 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