-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.android.js
125 lines (119 loc) · 2.84 KB
/
index.android.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/**
* Sample React Native App
* https://github.com/facebook/react-native
*/
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
Navigator,
TouchableOpacity,
} from 'react-native';
import slowlog from 'react-native-slowlog';
import SplashPage from './SplashPage';
import LoginPage from './LoginPage';
import MainPage from './MainPage';
import PersonPage from './PersonPage';
import NoNavigatorPage from './NoNavigatorPage';
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
});
class App extends Component {
constructor(props){
super(props);
slowlog(this, /.*/);
this.state = {
showSplash: true
};
}
componentWillMount() {
setTimeout(() => {
this.setState({
showSplash: false
});
}, 1000);
}
render() {
let { showSplash } = this.state;
if (showSplash) {
return (
<View style={{flex: 1, backgroundColor: '#246dd5', alignItems: 'center', justifyContent: 'center'}}>
<Text style={{color: 'white', fontSize: 32,}}>Hello</Text>
</View>
);
}
return (
<Navigator
initialRoute={{id: 'SplashPage', name: 'Index'}}
renderScene={this.renderScene.bind(this)}
configureScene={(route) => {
if (route.sceneConfig) {
return route.sceneConfig;
}
return Navigator.SceneConfigs.PushFromRight;
}} />
);
}
renderScene(route, navigator) {
var routeId = route.id;
if (routeId === 'SplashPage') {
return (
<SplashPage
navigator={navigator} />
);
}
if (routeId === 'LoginPage') {
return (
<LoginPage
navigator={navigator} />
);
}
if (routeId === 'MainPage') {
return (
<MainPage
navigator={navigator} />
);
}
if (routeId === 'PersonPage') {
return (
<PersonPage
navigator={navigator} />
);
}
if (routeId === 'NoNavigatorPage') {
return (
<NoNavigatorPage
navigator={navigator} />
);
}
return this.noRoute(navigator);
}
noRoute(navigator) {
return (
<View style={{flex: 1, alignItems: 'stretch', justifyContent: 'center'}}>
<TouchableOpacity style={{flex: 1, alignItems: 'center', justifyContent: 'center'}}
onPress={() => navigator.pop()}>
<Text style={{color: 'red', fontWeight: 'bold'}}>index.js no renderScene</Text>
</TouchableOpacity>
</View>
);
}
}
AppRegistry.registerComponent('ReactNativeNavigator', () => App);