We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9b945d commit f815f3dCopy full SHA for f815f3d
App/Navigation/NavigationBar.js
@@ -41,6 +41,8 @@ var Container = React.createClass({
41
}
42
});
43
44
+const routeMapper = new NavigationBarRouteMapper();
45
+
46
var NavigationBar = {
47
getInitialState: function() {
48
return {};
@@ -120,7 +122,7 @@ var NavigationBar = {
120
122
121
123
return (
124
<Navigator.NavigationBar
- routeMapper={new NavigationBarRouteMapper()}
125
+ routeMapper={routeMapper}
126
style={styles.navBar}
127
/>
128
);
@@ -131,7 +133,6 @@ var NavigationBar = {
131
133
<View style={styles.appContainer}>
132
134
<Navigator
135
ref="navigator"
- debugOverlay={false}
136
renderScene={this.renderScene}
137
navBarHidden={this.props.navBarHidden}
138
initialRouteStack={this.props.routeStack.path}
0 commit comments