-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
34 lines (31 loc) · 778 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
import { createAppContainer } from 'react-navigation';
import { createStackNavigator } from 'react-navigation-stack';
import Splash from './pages/Splash';
import Tabbar from './Tabbar';
const HomeStack = createStackNavigator(
{
//Defination of Navigaton from home screen
Splash: {
screen: Splash,
navigationOptions: {
header: null
},
},
Tabbar: { screen: Tabbar,
navigationOptions: {
header: null
},},
},
{
defaultNavigationOptions: {
//Header customization of the perticular Screen
headerStyle: {
backgroundColor: '#315660',
},
headerTintColor: 'white',
//Header title
},
initialRouteName: 'Splash'
}
);
export default createAppContainer(HomeStack);