forked from BigPun86/NavigatorDemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PersonPage.js
75 lines (71 loc) · 1.91 KB
/
PersonPage.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
'use strict';
var React = require('react-native');
var {
StyleSheet,
Component,
View,
Text,
Navigator,
TouchableOpacity,
} = React;
class PersonPage extends Component {
render() {
return (
<Navigator
renderScene={this.renderScene.bind(this)}
navigator={this.props.navigator}
navigationBar={
<Navigator.NavigationBar style={{backgroundColor: '#246dd5'}}
routeMapper={NavigationBarRouteMapper} />
} />
);
}
renderScene(route, navigator) {
return (
<View style={{flex: 1, alignItems: 'center', justifyContent: 'center'}}>
<TouchableOpacity
onPress={this.gotoNext.bind(this)}>
<Text>我的个人主页,漂亮吧 @.@</Text>
</TouchableOpacity>
</View>
);
}
gotoNext() {
this.props.navigator.push({
id: 'NoNavigatorPage',
sceneConfig: Navigator.SceneConfigs.FloatFromBottom,
});
}
}
var NavigationBarRouteMapper = {
LeftButton(route, navigator, index, nextState) {
return (
<TouchableOpacity style={{flex: 1, justifyContent: 'center'}}
onPress={() => navigator.parentNavigator.pop()}>
<Text style={{color: 'white', margin: 10,}}>
返回
</Text>
</TouchableOpacity>
);
},
RightButton(route, navigator, index, nextState) {
return (
<TouchableOpacity style={{flex: 1, justifyContent: 'center'}}
onPress={() => navigator.parentNavigator.push({id: 'unknown'})}>
<Text style={{color: 'white', margin: 10,}}>
试试手气
</Text>
</TouchableOpacity>
);
},
Title(route, navigator, index, nextState) {
return (
<TouchableOpacity style={{flex: 1, justifyContent: 'center'}}>
<Text style={{color: 'white', margin: 10, fontSize: 16}}>
个人主页
</Text>
</TouchableOpacity>
);
}
};
module.exports = PersonPage;