support SceneConfigs for navigator replace.
See original GitHub issueWe need to create navigation something like this:
a -> b -> c -> d
back button on b, c, d should take you back to a
at all times.
We are using replace for navigation from b->c->d
However there is no animation support for replace.
Is there a better way to do this with animations?
Issue Analytics
- State:
- Created 8 years ago
- Reactions:1
- Comments:18 (17 by maintainers)
Top Results From Across the Web
React Native Navigator: Can I remove navigation gestures ...
I want to disable the swipe from left pop gesture on the navigator after the side menu has been accessed within a scene....
Read more >Navigator - React Native Archive
Scene Transitions. To change the animation or gesture properties of the scene, provide a configureScene prop to get the config object for a...
Read more >React Native Navigator — Navigating Like A Pro in React Native
React Native may be undergoing a future change in the navigation, as there is a proposal to replace the api and functionality. In...
Read more >react-native-router-flux - npm
Ability to show/hide navigation bar (see limitations); Support for ... Default is 'push'. replace tells navigator to replace current route ...
Read more >react-native-router-flux-custom-tabs/README2.md - UNPKG
`replace` tells navigator to replace current route with new route. ... sceneConfig | Navigator.SceneConfigs | optional | Defines the transition animation. |.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
i have similiar problem with error message “undefined is not a object evaluating sceneConfig…” I’m using .popToPop() and it’s working, but after change route app crash with above error, so problem was I did’t bind this on my function with popToPop method… sry for eng
Ah i see. Makes sense. I din’t try
parentNavigator.route
yet. Will let you know.Thanks for taking the time out to help me. You guys are awesome.