-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.jsx
59 lines (49 loc) · 1.49 KB
/
App.jsx
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import React, { useEffect, useState, useCallback } from "react";
import { StyleSheet, Text, View } from "react-native";
import * as Font from "expo-font";
import * as SplashScreen from "expo-splash-screen";
import AppNavigator from "./src/navigation/app-navigator";
//This is will show flash screen until custom fonts are loaded
// SplashScreen.preventAutoHideAsync();
function App() {
const [fontsLoaded, setFontsLoaded] = useState(false);
useEffect(() => {
// Function to load and register the Inter font with fallbacks
try {
const loadFonts = async () => {
await Font.loadAsync({
"Inter-Regular": require("./src/assets/fonts/Inter-Regular.ttf"),
"Inter-Bold": require("./src/assets/fonts/Inter-Bold.ttf"),
"Inter-Extra-Bold": require("./src/assets/fonts/Inter-ExtraBold.ttf"),
});
setFontsLoaded(true);
};
loadFonts();
} catch (error) {
console.log("Error loading fonts", error);
}
}, []);
const onLayoutRootView = useCallback(async () => {
if (fontsLoaded) {
//Once fonts are loaded hide splash screen
await SplashScreen.hideAsync();
console.log("Splash screen hidden");
}
}, [setFontsLoaded]);
if (!fontsLoaded) {
return null;
}
return (
<View style={styles.container} onLayout={onLayoutRootView}>
<AppNavigator />
</View>
);
}
//STYLES
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
},
});
export default App;