-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
33 lines (28 loc) · 808 Bytes
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import React, { useEffect } from 'react'
import * as SplashScreen from 'expo-splash-screen'
import { useAppFonts } from '@/hooks/fonts'
import { StatusBar } from 'expo-status-bar'
import ScreenNavigation from '@/screens/index'
import '@/global.css'
import { GestureHandlerRootView } from 'react-native-gesture-handler'
SplashScreen.preventAutoHideAsync()
export default function App() {
const fontsLoaded = useAppFonts()
useEffect(() => {
async function hideSplashScreen() {
if (fontsLoaded) {
await SplashScreen.hideAsync()
}
}
hideSplashScreen()
}, [fontsLoaded])
if (!fontsLoaded) {
return null
}
return (
<GestureHandlerRootView style={{ flex: 1 }}>
<StatusBar style='light' />
<ScreenNavigation />
</GestureHandlerRootView>
)
}