-
Notifications
You must be signed in to change notification settings - Fork 30.2k
[go_router] Allow nested navigation inside of a Dialog or BottomSheet #119619
Copy link
Copy link
Closed
Labels
in triagePresently being triaged by the triage teamPresently being triaged by the triage teamwaiting for customer responseThe Flutter team cannot make further progress on this issue until the original reporter respondsThe Flutter team cannot make further progress on this issue until the original reporter responds
Description
In the past I used a Navigator widget to accomplish nested navigation inside of my BottomSheet widget:
@override
Widget build(BuildContext context) {
return Navigator(
initialRoute: home,
onGenerateRoute: onGenerateRoute,
);
}
But since GoRouter is not a widget, I can not return it inside my build function.
Beamer has support for this, but I would like to stick to go_router.
Any plans to support this in the near future?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
in triagePresently being triaged by the triage teamPresently being triaged by the triage teamwaiting for customer responseThe Flutter team cannot make further progress on this issue until the original reporter respondsThe Flutter team cannot make further progress on this issue until the original reporter responds