jmurzy/react-router-native

Changing routes renders oldRouteComponent and newRouteComponent together

julienvincent opened this issue · 1 comments

Dependency Version
react-router-native 2.0.0-alpha.2
react-router 3.0.0-alpha.1
react-native 0.30.0

When changing routes and no animation is set, both the transitionFrom component and the transitionTo component are briefly rendered together.

This results in a UI that looks something like this:

Device:

| -- transitionFromComponent -- |
| |
| |
| |
| |
| |
| |
++++++++++++++++++++++++++
| -- transitionToComponent -- |
| |
| |
| |
| |
| |
| |

Thanks for reporting. This is fixed in 73cf352. Will push a new release shortly. Previously I had to slightly defer execution of the transition animations due to this bug in NavigationExperimental.

🍺