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 { ThemedView } from '@/components/ThemedView'; const HEADER_HEIGHT = 250; type Props = PropsWithChildren<{ }>; export default function ParallaxScrollView({ children, }: Props) { const scrollRef = useAnimatedRef(); return ( CAS4 {children} ); } 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', }, content: { flex: 1, padding: 32, gap: 16, overflow: 'hidden', }, });