-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
68 lines (54 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import React, { useCallback, useEffect, useState } from 'react';
import { GestureHandlerRootView } from 'react-native-gesture-handler';
import Toast from 'react-native-toast-message';
import {
Poppins_300Light,
Poppins_500Medium,
Poppins_600SemiBold,
} from '@expo-google-fonts/poppins';
import * as Font from 'expo-font';
import * as SplashScreen from 'expo-splash-screen';
import { QueryClient, QueryClientProvider } from 'react-query';
import { Routes } from 'routes';
import { Auth } from 'screens/Auth';
import { ThemeProvider } from 'styled-components';
import theme from 'styles/theme';
const queryClient = new QueryClient();
export default function App() {
const [appIsReady, setAppIsReady] = useState(false);
useEffect(() => {
async function prepare() {
try {
await Font.loadAsync({
Poppins_300Light,
Poppins_500Medium,
Poppins_600SemiBold,
});
} catch (e) {
console.warn(e);
} finally {
setAppIsReady(true);
}
}
prepare();
}, []);
const onLayoutRootView = useCallback(async () => {
if (appIsReady) {
await SplashScreen.hideAsync();
}
}, [appIsReady]);
if (!appIsReady) {
return null;
}
return (
<ThemeProvider theme={theme}>
<QueryClientProvider client={queryClient}>
<GestureHandlerRootView onLayout={onLayoutRootView} style={{ flex: 1 }}>
<Routes />
{/* <Auth /> */}
<Toast />
</GestureHandlerRootView>
</QueryClientProvider>
</ThemeProvider>
);
}