-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
64 lines (55 loc) · 1.61 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
57
58
59
60
61
62
63
64
/* eslint-disable camelcase */
import React from "react";
import FlashMessage from "react-native-flash-message";
import {
useFonts,
Jost_400Regular,
Jost_600SemiBold,
} from "@expo-google-fonts/jost";
import * as SplashScreen from "expo-splash-screen";
import * as Notifications from "expo-notifications";
import * as NavigationBar from "expo-navigation-bar";
import { PlantData } from "./src/libs/storage";
import Routes from "./src/routes";
import { Theme } from "./src/theme";
import { StatusBar } from "expo-status-bar";
import { getStatusBarHeight } from 'react-native-iphone-x-helper'
SplashScreen.preventAutoHideAsync();
NavigationBar.setBackgroundColorAsync("#fff");
export default function App(): React.ReactElement | null {
const [fontsLoaded] = useFonts({
Jost_600SemiBold,
Jost_400Regular,
});
React.useEffect(() => {
Notifications.setNotificationHandler({
handleNotification: async () => ({
shouldShowAlert: true,
shouldPlaySound: false,
shouldSetBadge: false,
}),
});
/*
const subscription = Notifications.addNotificationReceivedListener(
async (notification) => {
const content = notification.request.content
console.log(content)
}
);
return () => subscription.remove();
*/
}, []);
React.useEffect(() => {
if (fontsLoaded) SplashScreen.hideAsync();
}, [fontsLoaded]);
if (!fontsLoaded) {
return null;
}
return (
<Theme>
<FlashMessage position="top" statusBarHeight={getStatusBarHeight()} />
<StatusBar style="dark" translucent />
<Routes />
</Theme>
);
}