React Native, NavigationExperimental Animations
Does React Native Navigation experimental support slide from bottom, slide from left, fade effects etc? If yes how do we do it. Please help.
When you render your scene using renderScene of NavigationTransitioner , you get props object that contains layout , position , scene and progress . You can use them with your custom interpolation function to create any animation you like. At this time, react native seems to have only right-to-left and bottom-to-up animations out-of-the-box. You can use them via NavigationCardStackStyleInterpolator : forHorizontal and forVertical . See: NavigationCardStackStyleInterpolator.js for more details. If your code looks like: RN-NavigationExperimental-Redux-Example You can define style property of NavigationCard like: <NavigationCard {...props} style={NavigationCardStackStyleInterpolator.forVertical(props)} renderScene={this._renderScene} key={props.scene.navigationState.key} /> This will change transition fro...