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 051a8de commit acdc02aCopy full SHA for acdc02a
index.js
@@ -62,6 +62,10 @@ var Router = React.createClass({
62
this.props.customAction(opts);
63
},
64
65
+ configureScene: function(route) {
66
+ return route.sceneConfig || Navigator.SceneConfigs.FloatFromRight;
67
+ },
68
+
69
renderScene: function(route, navigator) {
70
71
var goForward = function(route) {
@@ -205,6 +209,7 @@ var Router = React.createClass({
205
209
navigationBar={navigationBar}
206
210
renderScene={this.renderScene}
207
211
onWillFocus={this.onWillFocus}
212
+ configureScene={this.configureScene}
208
213
/>
214
)
215
}
0 commit comments