-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
33 lines (29 loc) · 1.14 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
import React, { useEffect } from 'react';
import RNBootSplash from "react-native-bootsplash";
import Home from './Components/Home';
import Done from './Components/Done';
import DetailsView from './Components/DetailsView';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import codePush from 'react-native-code-push';
let codePushOptions = { checkFrequency: codePush.CheckFrequency.ON_APP_START };
const App = () => {
const Stack = createNativeStackNavigator();
useEffect(() => {
RNBootSplash.hide(); // fade
codePush.sync({
updateDialog: true,
installMode: codePush.InstallMode.IMMEDIATE
});
}, []);
return (
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen name="Home" component={Home} options={{ headerShown: false }} />
<Stack.Screen name="Details" component={DetailsView} options={{ headerShown: false }} />
<Stack.Screen name="Done" component={Done} options={{ headerShown: false }} />
</Stack.Navigator>
</NavigationContainer>
);
}
export default codePush(codePushOptions)(App);;