-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
37 lines (35 loc) · 1000 Bytes
/
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
import '@/0bootstrap';
import AppProvider from '@/AppProvider';
import Main from '@/Main';
import theme from '@/theme';
import * as Notifications from 'expo-notifications';
import { StatusBar } from 'react-native';
import { GestureHandlerRootView } from 'react-native-gesture-handler';
import { SafeAreaProvider } from 'react-native-safe-area-context';
Notifications.setNotificationHandler({
handleNotification: async () => ({
shouldShowAlert: true,
shouldPlaySound: false,
shouldSetBadge: false,
}),
});
/**
* Root view of the app with the providers needed to wrap the main view
* @returns {JSX.Element}
* @constructor
*/
export default function App() {
return (
<GestureHandlerRootView style={{ flex: 1 }}>
<SafeAreaProvider>
<StatusBar
backgroundColor={theme.colors.card}
barStyle="light-content"
/>
<AppProvider>
<Main />
</AppProvider>
</SafeAreaProvider>
</GestureHandlerRootView>
);
}