ConfigureScene with NavigatorIOS

188 Views Asked by At

Is there a way to configure transitioning of scenes with NavigatorIOS? or does it only have a default floatFromRight property. I have,

this.props.navigator.push({
component : component,
title: 'hello',
// configuring the transition type 
 });
1

There are 1 best solutions below

1
On

You can use other animations , see here: navigator configurescene

You have all these:

  • Navigator.SceneConfigs.PushFromRight "DEFAULT"
  • Navigator.SceneConfigs.FloatFromRight
  • Navigator.SceneConfigs.FloatFromLeft
  • Navigator.SceneConfigs.FloatFromBottom
  • Navigator.SceneConfigs.FloatFromBottomAndroid
  • Navigator.SceneConfigs.FadeAndroid
  • Navigator.SceneConfigs.HorizontalSwipeJump
  • Navigator.SceneConfigs.HorizontalSwipeJumpFromRight
  • Navigator.SceneConfigs.VerticalUpSwipeJump
  • Navigator.SceneConfigs.VerticalDownSwipeJump

Example:

<Navigator
   initialRoute={{id: 'Home'}}
   renderScene={this.navigatorRenderScene}
   configureScene={(route, routeStack) =>
      Navigator.SceneConfigs.HorizontalSwipeJump
   }
/>