You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
Given a stack navigator with the following routes:
{Login,ConnectGmail,Loading,Welcome}
What
I'm proposing a navigation.continue or navigation.next method that will automatically determine the next route in line.
Why
Over the past 6 months we've built different onboarding flows and moving routes around for testing purposes. I have to open up individual files and update to the correct route name.
This isn't the worst thing in the world, but if I could do this at the navigator level it would improve my productivity.
Issues
sort order may be inconsistent. I would propose a key that would maintain sort order for you:
{Login: {key: 0,screen: LoginScreen}}
How
I would be more than happy to implement this.
Thank you!
The text was updated successfully, but these errors were encountered:
‘continue’ seems like a useful feature to add to stack router. Could we make the “order” API match that of tab router? It uses the order of keys in the object by default, which is technically not defined in the JS spec, but usually works nonetheless. The correct way to define it is to explicitly provide the order in the router config
👋
Given a stack navigator with the following routes:
What
I'm proposing a
navigation.continue
ornavigation.next
method that will automatically determine the next route in line.Why
Over the past 6 months we've built different onboarding flows and moving routes around for testing purposes. I have to open up individual files and update to the correct route name.
This isn't the worst thing in the world, but if I could do this at the navigator level it would improve my productivity.
Issues
How
I would be more than happy to implement this.
Thank you!
The text was updated successfully, but these errors were encountered: