import { useTheme } from '@react-navigation/native'; import * as React from 'react'; import { Animated, StyleProp, ViewProps, ViewStyle } from 'react-native'; type Props = Omit & { style?: Animated.WithAnimatedValue>; children: React.ReactNode; }; export function Background({ style, ...rest }: Props) { const { colors } = useTheme(); return ( ); }