-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathApp.js
More file actions
42 lines (33 loc) · 864 Bytes
/
App.js
File metadata and controls
42 lines (33 loc) · 864 Bytes
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
import React, {useEffect, } from "react";
import Routes from './src/routes';
import FlashMessage from "react-native-flash-message";
import {
useFonts,
Jost_400Regular,
Jost_600SemiBold,
} from '@expo-google-fonts/jost';
import AppLoading from 'expo-app-loading';
import * as Updates from "expo-updates";
export default function App() {
const [fontsLoaded] = useFonts({
Jost_400Regular,
Jost_600SemiBold
});
useEffect(() => {
async function updateApp() {
const { isAvailable } = await Updates.checkForUpdateAsync();
if (isAvailable) {
await Updates.fetchUpdateAsync();
await Updates.reloadAsync();
}
}
updateApp();
}, []);
if (!fontsLoaded) return <AppLoading />;
return (
<>
<Routes />
<FlashMessage icon="auto" duration={5500} style={{ marginTop: 0 }} />
</>
);
}