-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.js
62 lines (54 loc) · 1.56 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import { TouchableWithoutFeedback, View } from 'react-native';
import * as SplashScreen from 'expo-splash-screen';
import { useFonts } from 'expo-font';
import React, { useCallback, useEffect, useState } from 'react';
import {
configureFonts,
MD2LightTheme,
PaperProvider,
} from 'react-native-paper';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import { GestureHandlerRootView } from 'react-native-gesture-handler';
import {
colors,
fontsLoadedConfig,
paperFontConfig,
} from './src/constants/index';
import * as Constants from './src/constants/index';
import Routes from './src/routes/routes';
const Stack = createNativeStackNavigator();
function App() {
const [fontsLoaded] = useFonts(fontsLoadedConfig);
const paperTheme = {
...MD2LightTheme,
fonts: configureFonts({ config: Constants.paperFontConfig, isV3: false }),
colors: {
...MD2LightTheme.colors,
primary: Constants.colors.primary[500],
secondary: Constants.colors.primary[400],
},
};
useEffect(() => {
async function prepare() {
await SplashScreen.preventAutoHideAsync();
}
prepare();
}, []);
const onLayoutRootView = useCallback(async () => {
if (fontsLoaded) {
await SplashScreen.hideAsync();
}
}, [fontsLoaded]);
if (!fontsLoaded) {
return null;
}
return (
<PaperProvider theme={paperTheme}>
<GestureHandlerRootView style={{ flex: 1 }}>
<View onLayout={onLayoutRootView} />
<Routes />
</GestureHandlerRootView>
</PaperProvider>
);
}
export default App;