-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathNavBar.ios.js
More file actions
39 lines (33 loc) · 917 Bytes
/
NavBar.ios.js
File metadata and controls
39 lines (33 loc) · 917 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
/* @flow */
import React from 'react';
import { StyleSheet, PixelRatio } from 'react-native';
import CustomComponents from 'react-native-deprecated-custom-components';
class NavBar extends React.Component {
updateProgress(progress, fromIndex, toIndex) {
this._nav.updateProgress(progress, fromIndex, toIndex);
}
render() {
return (
<CustomComponents.Navigator.NavigationBar
style={[styles.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
};
const styles = StyleSheet.create({
navBar: {
backgroundColor: 'white',
borderBottomWidth: 1 / PixelRatio.get(),
borderColor: '#8e8e93'
}
});
export default NavBar;