-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
38 lines (34 loc) · 885 Bytes
/
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
import React from 'react';
import {LogBox, StyleSheet, View} from 'react-native';
import MainStack from './src/navigation/main';
import {NavigationContainer} from '@react-navigation/native';
import {GestureHandlerRootView} from 'react-native-gesture-handler';
import {useEffect} from 'react';
import {StatusBar} from 'expo-status-bar';
const App = () => {
useEffect(() => {
LogBox.ignoreAllLogs();
}, []);
return (
<View style={styles.flex}>
<GestureHandlerRootView style={{flex: 1}}>
<NavigationContainer>
<MainStack />
</NavigationContainer>
</GestureHandlerRootView>
<StatusBar style="light" />
</View>
);
};
const styles = StyleSheet.create({
flex: {
flex: 1,
},
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
export default App;