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'; import { ThemedText } from './ThemedText'; 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: 'rgba(10, 10, 10, .5)', paddingTop: 50, padding: 10, }, header: { height: 250, overflow: 'hidden', }, content: { flex: 1, padding: 32, gap: 16, overflow: 'hidden', }, });