import Animated from 'react-native-reanimated'; import { useSplash } from './useSplash'; import { AppBox, AppScreen } from '../../layout'; import { AppText } from '../../text'; import { useAppVersion } from '~/utils'; import { useAppTheme } from '~/view/theme'; export const Splash = () => { const { spacing } = useAppTheme(); const { bootSplashIsVisible, viewStyle, animatedText, textContainerStyle } = useSplash(); const appVersion = useAppVersion(); if (!bootSplashIsVisible) { return null; } return ( {/**/} {/* */} {/**/} {appVersion} {animatedText} ); };