-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using different navigation solution #19
Comments
I'm happy to switch to ExNav if it's not going to eat up too much time. Do we have to do it now or can we wait and get some of the bigger hurdles out of the way first? Or is it better to do it early as it saves time later on? |
Yes, this has to be done early. We are going to do that tomorrow! Shouldn't take too long. |
Additional references about ex-navigation: |
Redirecting and resetting navigation stackWe tried to follow this method for resetting the navigation stack. We ran into problems - Instead, we were able to access navigation.performAction(({ tabs, stacks }) => {
tabs('main').jumpToTab('feed');
stacks('confirm').immediatelyResetStack([Router.getRoute('feed')], 0);
});
|
@rickardinho
After research we have discovered that there is another navigation plugin (https://github.com/exponentjs/ex-navigation) which is recommended by a member of react-native team (see facebook/react-native#6184 (comment)). The benefits over react-native-router-flux are:
We feel it would be best to switch the navigation to ex-navigation. What your thoughts?
The text was updated successfully, but these errors were encountered: