-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
40 lines (30 loc) · 1.17 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
import React, { useEffect } from 'react';
import Routes from './src/routes/index';
import * as Notification from 'expo-notifications';
import { useFonts, Jost_400Regular, Jost_600SemiBold } from '@expo-google-fonts/jost';
import AppLoading from 'expo-app-loading';
import { PlantProps } from './src/libs/storage';
export default function App() {
const [ fontsLoaded ] = useFonts({ Jost_400Regular, Jost_600SemiBold });
useEffect(()=> {
const subscription = Notification.addNotificationReceivedListener(
async notification => {
await Notification.cancelAllScheduledNotificationsAsync();
const data = notification.request.content.data.plant as PlantProps;
console.log("=-=-=-=-=-=- Notification-=-=-=-=-=-=-=");
console.log(data);
//return () => subscription.remove();
//async function notification() {
//const data = await Notification.getAllScheduledNotificationsAsync();
//console.log("=-=-=-=-=-=- Notifications-=-=-=-=-=-=-=");
//console.log(data);
//}
})
//notification();
}, [])
if(!fontsLoaded)
return <AppLoading />
return (
<Routes />
)
}