有没有办法使用NavigatorIOS配置场景转换?或者它只有一个默认的floatFromRight属性。我有,
this.props.navigator.push({
component : component,
title: 'hello',
// configuring the transition type
});
答案 0 :(得分:-1)
您可以使用其他动画,请参阅此处:navigator configurescene
你有这些:
示例:
<Navigator
initialRoute={{id: 'Home'}}
renderScene={this.navigatorRenderScene}
configureScene={(route, routeStack) =>
Navigator.SceneConfigs.HorizontalSwipeJump
}
/>