-
-
Notifications
You must be signed in to change notification settings - Fork 130
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
Deeplinking to nested beams #553
Comments
@ericf-br at least there is one work around you can use: navigate to concrete tab you want with something like bloc/cubit/valuenotifier. And then navigate to concrete screen via tab beamer delegate. |
I handle incoming links and write them into a state object. |
This is because E is inside the A router, so A router has to be built/entered first. A route like |
Well the nested beamer is still a separated navigator from root beamer as I understand,I can feeling there is design conflicting between "flutter app state styles url routing" and "web url navigation",and make its hard to deal with real web url stuff.🤔 |
@ericf-br were you able to figure out how to properly implement this? 😄 |
I can't seem to find a way to do this.
The main app has a BeamerDelegate with Locations A, B, C.
Location A is a BottomNavBar with it's own Beamer and Delegate, D, E ,F
A deep link such as myapp://myapp.com/B will work.
A deep link to myapp://myapp.com/E will NOT work because it's delegate is not the main app's delegate, so you get page not found. I can't find a way to "forward" the deep link to the bottom nav bar's BeamerDelegate.
Thoughts?
The text was updated successfully, but these errors were encountered: