-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
52 lines (42 loc) · 1.4 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
import React from 'react';
import AppLoading from "expo-app-loading";
// Não é necessário informar './src/routes/index'
// porque de forma padrão o index é procurado
// quando nenhum arquivo é informado
import Routes from './src/routes';
import {
useFonts,
Jost_400Regular,
Jost_600SemiBold
} from '@expo-google-fonts/jost'
export default function App() {
const [fontsLoaded] = useFonts({
Jost_400Regular,
Jost_600SemiBold
});
// useEffect(() => {
// // Código abaixo serve para observar o recebimento de notificações
// // const subscription = Notifications.addNotificationReceivedListener(
// // async notification => {
// // const data = notification.request.content.data.plant as PlantProps;
// // console.log(data);
// // }
// // );
// // return () => subscription.remove();
// async function notifications() {
// // Código abaixo serve para cancelar todas as notificações agendadas
// await Notifications.cancelAllScheduledNotificationsAsync();
// // Código abaixo serve para mostrar todas as notificações agendadas
// const data = await Notifications.getAllScheduledNotificationsAsync();
// console.log('######## NOTIFICAÇÕES AGENDADAS ########');
// console.log(data);
// }
// notifications();
// });
if (!fontsLoaded) {
return <AppLoading />
}
return (
<Routes />
);
}