-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
56 lines (46 loc) · 1.33 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
import React, { useCallback, useEffect, useState } from 'react';
import * as SplashScreen from 'expo-splash-screen';
import { View } from 'react-native';
import { Provider } from 'react-redux';
import { beforeRender, afterRender } from './src/bootstrap';
import store from './src/state/store';
import Screens from './src/screens';
export default function App() {
const [appIsReady, setAppIsReady] = useState(false);
useEffect(() => {
async function prepare() {
try {
await SplashScreen.preventAutoHideAsync();
await beforeRender();
// eslint-disable-next-line no-promise-executor-return
await new Promise((resolve) => setTimeout(resolve, 1000));
} catch (e) {
console.warn(e);
} finally {
setAppIsReady(true);
await afterRender();
}
}
// eslint-disable-next-line @typescript-eslint/no-floating-promises
prepare();
}, []);
const onLayoutRootView = useCallback(async () => {
if (appIsReady) {
await SplashScreen.hideAsync();
}
}, [appIsReady]);
if (!appIsReady) {
return null;
}
return (
<View
style={{ flex: 1 }}
// eslint-disable-next-line @typescript-eslint/no-misused-promises
onLayout={onLayoutRootView}
>
<Provider store={store}>
<Screens />
</Provider>
</View>
);
}