-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.js
39 lines (36 loc) · 885 Bytes
/
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
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow
*/
import { createSwitchNavigator } from 'react-navigation';
import AuthLoginScreen from './screens/AuthLogin/AuthLoginScreen';
// import LoginScreen from './screens/Login/LoginScreen';
import IntroScreenStack from './configs/Navigations/IntroScreenStack';
import LeftDrawerNavigator from './configs/Navigations/LeftDrawerNavigator';
export default createSwitchNavigator({
AuthenticationLogin: {
screen: AuthLoginScreen,
navigationOptions: {
header: null
}
},
Home: {
screen: LeftDrawerNavigator,
navigationOptions: {
header: null
}
},
Login: {
// screen: LoginScreen,
screen: IntroScreenStack,
navigationOptions: {
header: null
}
},
}, {
initialRouteName: 'AuthenticationLogin',
headerMode: "none"
});