-
Notifications
You must be signed in to change notification settings - Fork 3
/
App.tsx
41 lines (37 loc) · 1.31 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
import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import * as Notifications from 'expo-notifications';
import useCachedResources from './hooks/useCachedResources';
import useColorScheme from './hooks/useColorScheme';
import useHostnameCheck from './hooks/useHostnameCheck';
import Navigation from './navigation';
import { Provider as PaperProvider } from 'react-native-paper';
import { InitialRoute } from './types';
import { combineThemes } from './hooks/combineThemes';
Notifications.setNotificationHandler({
handleNotification: async () => ({
shouldShowAlert: true,
shouldPlaySound: false,
shouldSetBadge: false,
}),
});
export default function App() {
const areResourcesLoaded = useCachedResources();
const colorScheme = useColorScheme();
const theme = combineThemes(colorScheme);
const {checkedHostname, hasHostname} = useHostnameCheck();
if (areResourcesLoaded) {
const initialRoute = hasHostname ? InitialRoute.hostname : InitialRoute.noHostname;
return (
<SafeAreaProvider>
<PaperProvider theme={theme}>
<Navigation colorScheme={colorScheme} initialRoute={initialRoute}/>
</PaperProvider>
<StatusBar />
</SafeAreaProvider>
);
} else {
return null;
}
}