-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
47 lines (43 loc) · 1.11 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import React, { useEffect, useState, useCallback } from "react";
import { ThemeProvider } from "styled-components";
import { Characters } from "./src/components/characters";
import theme from "./src/global/theme";
import * as SplashScreen from "expo-splash-screen";
import * as Font from "expo-font";
import {
Poppins_400Regular,
Poppins_500Medium,
Poppins_700Bold,
} from "@expo-google-fonts/poppins";
export default function App() {
const [appIsReady, setAppIsReady] = useState(false);
useEffect(() => {
(async () => {
try {
await SplashScreen.preventAutoHideAsync();
await Font.loadAsync({
Poppins_400Regular,
Poppins_500Medium,
Poppins_700Bold,
});
} catch (e) {
console.warn(e);
} finally {
setAppIsReady(true);
}
})();
}, []);
const onLayout = useCallback(async () => {
if (appIsReady) {
await SplashScreen.hideAsync();
}
}, [appIsReady]);
if (!appIsReady) {
return null;
}
return (
<ThemeProvider theme={theme}>
<Characters onLayout={onLayout} />
</ThemeProvider>
);
}