-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
51 lines (44 loc) · 1.65 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
import React, { useEffect } from 'react';
import {Welcome} from "./src/pages/Welcome";
import {UserIdentification} from "./src/pages/userIndentification";
import Routes from "./src/Routes";
//lídar com carregamento do app, de fontes por exemplo.
import AppLoading from 'expo-app-loading';
import {useFonts, Jost_400Regular, Jost_600SemiBold} from '@expo-google-fonts/jost';
import * as Notifications from 'expo-notifications';
import { PlantProps } from './src/libs/storage';
export default function App() {
const [ fontsLoaded ] = useFonts({
Jost_400Regular,
Jost_600SemiBold
});
useEffect(() => {
const subscription = Notifications.addNotificationReceivedListener(
async notification => {
const data = notification.request.content.data.plant as PlantProps
//Detalhes da planta em notification
console.log(data);
});
return () => subscription.remove();
/* async function notifications () {
await Notifications.cancelAllScheduledNotificationsAsync();
const data = await Notifications.getAllScheduledNotificationsAsync();
console.log("Notificações agendadas");
console.log(data);
}
notifications(); */
},[]);
if(!fontsLoaded)
return<AppLoading/>
return (
<Routes/>
);
}
/*Para fazer a navegação precisamos do react-navigation
yarn add @react-navigation/native
expo install react-native-gesture-handler react-native-reanimated
react-native-screens react-native-safe-area-context
@react-native-community/masked-view
//json-server ./src/services/server.json --host 192.168.0.10 --port 3333 --delay 700
yarn add @react-navigation/stack
*/