-
Notifications
You must be signed in to change notification settings - Fork 0
/
AppNavigator.js
66 lines (61 loc) · 1.66 KB
/
AppNavigator.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import React from 'react';
import { Image } from 'react-native';
import { createStackNavigator } from 'react-navigation-stack';
import { createAppContainer } from 'react-navigation';
import SplashScreen from './screens/SplashScreen';
import ProfileScreen from './screens/ProfileScreen';
import CameraScreen from './screens/CameraScreen';
import LoginScreen from './screens/LoginScreen';
import UserRegistrationScreen from './screens/UserRegistrationScreen';
import ChatScreen from './screens/ChatScreen';
const AppNavigator = createStackNavigator(
{
Splash: {
screen: SplashScreen,
navigationOptions: () => ({
header: null
})
},
Login: LoginScreen,
UserRegistration: UserRegistrationScreen,
Camera: {
screen: CameraScreen,
navigationOptions: () => ({
header: null
})
},
Profile: {
screen: ProfileScreen,
navigationOptions: () => ({
//header: null
})
},
Chat: ChatScreen
},
{
initialRouteName: 'Splash',
defaultNavigationOptions: {
title: 'Rena Chat',
headerStyle: {
backgroundColor: 'black',
},
headerTitle: () => <Image style={{
flex: .5,
alignSelf: 'stretch',
height: undefined,
width: undefined,
resizeMode: 'contain',
}} source={require('./screens/images/rena-chat-logo-2.png')} />,
headerTintColor: '#fff',
headerTitleStyle: {
fontSize: 34,
fontWeight: 'bold',
textAlign: 'center',
alignSelf: 'center',
justifyContent: 'center'
},
},
headerLayoutPreset: 'center'
},
)
export default createAppContainer(AppNavigator);