-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathApp.js
44 lines (39 loc) · 1.42 KB
/
App.js
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
34
35
36
37
38
39
40
41
42
43
44
// --------------------------------------------------------------------
// SYSTEM COMPONENTS
// --------------------------------------------------------------------
import { View, Text } from 'react-native'
import React,{ useEffect, useState } from 'react';
import { useFonts } from 'expo-font';
import * as SplScreen from "expo-splash-screen";
import AppNavigation from './src/navigation';
const App = () => {
// ------------------------------------------------------------
// status bar color state
// ------------------------------------------------------------
const StyleTypes = ["default", "dark-content", "light-content"];
const [visibleStatusBar, sentvisibleStatusBar] = useState(false);
const [styleStatusBar, setStyleStatusBar] = useState(StyleTypes[0]);
// ------------------------------------------------------------
// fonts
// ------------------------------------------------------------
let [fontsLoaded] = useFonts({
"Archivo-Regular": require("./assets/fonts/Archivo-Regular.ttf"),
"Archivo-ExtraBold": require("./assets/fonts/Archivo-ExtraBold.ttf"),
"FREEFATFONT-Regular": require("./assets/fonts/FREEFATFONT-Regular.otf"),
});
useEffect(() => {
async function prepare(){
await SplScreen.preventAutoHideAsync();
}
prepare();
}, [])
if (!fontsLoaded) {
return undefined;
} else {
SplScreen.hideAsync();
}
return (
<AppNavigation />
)
}
export default App