-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.android.js
87 lines (79 loc) · 2.08 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
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
Navigator,
Icon,
TouchableOpacity,
} from 'react-native';
import SearchPage from './SearchPage';
import SearchResults from './SearchResults';
class PropertyFinderApp extends React.Component {
renderScene(route, navigator) {
console.log('renderScene');
/*return (
<SearchPage route={route} navigator={navigator} />
);*/
switch (route.id) {
case 'PageOne':
return (<SearchPage route={route} navigator={ navigator } title={ "PageOne" } />);
case 'PageTwo':
return (<SearchResults route={route} navigator={ navigator } leftButton={ "Back" } title={"PageTwo" } />);
}
}
static NavigationBarRouteMapper = props => ({
LeftButton: function( route, navigator, index, navState ){
return(
<TouchableOpacity style={{flex: 1, justifyContent: 'center'}}>
<Text>Left</Text>
</TouchableOpacity>
);
},
Title: function( route, navigator, index, navState ){
return(
<Text>{ route.title }</Text>
)
},
RightButton: function( route, navigator, index, navState ){
return(
// <Text>{ route.rightButton }</Text>
<TouchableOpacity style={{flex: 1, justifyContent: 'center'}}>
<Text>Right</Text>
</TouchableOpacity>
)
},
})
render() {
return (
<Navigator
initialRoute={{id: 'PageOne', title: 'PageOne'}}
renderScene={this.renderScene}
navigationBar={
<Navigator.NavigationBar
routeMapper={PropertyFinderApp.NavigationBarRouteMapper(this.props)}
style={styles.navbar}
/>
}
/>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
text: {
color: 'black',
backgroundColor: 'white',
fontSize: 30,
margin: 80
},
});
AppRegistry.registerComponent('PropertyFinder', () => PropertyFinderApp);