-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
49 lines (44 loc) · 1.27 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
41
42
43
44
45
46
47
48
49
import React, { Component } from 'react';
import { YellowBox, View } from 'react-native';
import { StackNavigator } from 'react-navigation';
import StackViewStyleInterpolator from "react-navigation/src/views/StackView/StackViewStyleInterpolator";
import TabNavigator from './src/components/common/TabNavigator'
import ProfileScreen from './ProfileScreen'
export default App = StackNavigator({
Main: {
screen: TabNavigator,
navigationOptions: {
title: 'main',
headerTitleStyle: {
flex: 1,
textAlign: 'center',
alignSelf: 'center'
},
}
},
Profile: {
screen: ProfileScreen,
navigationOptions:{
title: 'profile',
headerTitleStyle: {
flex: 1,
textAlign: 'center',
alignSelf: 'center'
},
headerRight: <View />
}
},
}, {
mode: 'modal',
navigationOptions: {
},
transitionConfig: () => ({
screenInterpolator: StackViewStyleInterpolator.forHorizontal
}),
});
YellowBox.ignoreWarnings([
'Warning: isMounted(...) is deprecated',
'Module RCTImageLoader',
'The StackNavigator function',
'Method `jumpToIndex` is deprecated'
]);