-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
40 lines (39 loc) · 1.16 KB
/
App.js
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 userLogin from "./app/login";
import userDashboard from "./app/dashboard";
import { NavigationContainer } from "@react-navigation/native";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
import * as Updates from "expo-updates";
//
const Stack = createNativeStackNavigator();
export default function App() {
//
async function onFetchUpdateAsync() {
try {
const update = await Updates.checkForUpdateAsync();
if (update.isAvailable) {
await Updates.fetchUpdateAsync();
await Updates.reloadAsync();
}
} catch (error) {
// You can also add an alert() to see the error message in case of an error when fetching updates.
alert(`Error fetching latest update: ${error}`);
}
}
//
return (
<NavigationContainer>
<Stack.Navigator initialRouteName="Login">
<Stack.Screen
options={{ headerShown: false }}
name="Login"
component={userLogin}
/>
<Stack.Screen
options={{ headerShown: false }}
name="Dashboard"
component={userDashboard}
/>
</Stack.Navigator>
</NavigationContainer>
);
}