Files
tattletires/app/splash.tsx

13 lines
242 B
TypeScript
Raw Normal View History

import { SplashScreen } from 'expo-router'
import { useSession } from './ctx'
export function SplashScreenController() {
const { isLoading } = useSession()
if (!isLoading) {
SplashScreen.hideAsync()
}
return null
}