-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.android.js
More file actions
78 lines (71 loc) · 1.61 KB
/
index.android.js
File metadata and controls
78 lines (71 loc) · 1.61 KB
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
/**
* Adoption Pets App
* https://github.com/rationalappdev/adopt-me
*/
'use strict';
import React, { Component } from 'react';
import {
AppRegistry,
BackAndroid,
Navigator,
StyleSheet,
ToolbarAndroid,
View,
} from 'react-native';
import App from './App';
import PetScreen from './PetScreen';
let _navigator;
BackAndroid.addEventListener('hardwareBackPress', () => {
if (_navigator && _navigator.getCurrentRoutes().length > 1) {
_navigator.pop();
return true;
}
return false;
});
const RouteMapper = function(route, navigationOperations, onComponentRef) {
_navigator = navigationOperations;
if (route.name === 'app') {
return (
<App navigator={navigationOperations} />
);
} else if (route.name === 'pet') {
return (
<View style={{flex: 1}}>
<ToolbarAndroid
actions={[]}
onIconClicked={navigationOperations.pop}
style={styles.toolbar}
titleColor="white"
title={route.pet.name} />
<PetScreen
style={{flex: 1}}
navigator={navigationOperations}
pet={route.pet}
/>
</View>
);
}
};
class AdoptMe extends Component {
render() {
return (
<Navigator
style={styles.container}
initialRoute={{name: 'app'}}
configureScene={() => Navigator.SceneConfigs.FadeAndroid}
renderScene={RouteMapper}
/>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: 'white',
},
toolbar: {
backgroundColor: '#a9a9a9',
height: 56,
},
});
AppRegistry.registerComponent('AdoptMe', () => AdoptMe);