-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathNavBar.android.js
More file actions
40 lines (34 loc) · 930 Bytes
/
NavBar.android.js
File metadata and controls
40 lines (34 loc) · 930 Bytes
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
/* @flow */
import React from 'react';
import { StyleSheet } from 'react-native';
import CustomComponents from 'react-native-deprecated-custom-components';
const stylesAndroid = StyleSheet.create({
navBar: {
backgroundColor: '#f5f5f5',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center'
}
});
class NavBar extends React.Component {
updateProgress(progress, fromIndex, toIndex) {
this._nav.updateProgress(progress, fromIndex, toIndex);
}
render() {
return (
<CustomComponents.Navigator.NavigationBar
style={[stylesAndroid.navBar, this.props.style]}
routeMapper={this.props.routeMapper}
navState={this.props.navState}
navigator={this.props.navigator}
ref={nav => {
this._nav = nav;
}}
/>
);
}
}
NavBar.propTypes = {
...CustomComponents.Navigator.NavigationBar.propTypes
};
export default NavBar;