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
When navigating between two routes at the same level, CupertinoExtendedPage and MaterialExtendedPage won't build the correct page widget. It works fine using Flutter MaterialPage.
I found out the problem being caused by an update on both _PageBasedCupertinoPageRoute and _PageBasedMaterialPageRoutebuildContent method making it call super.builder instead of _page.child and causing the old route _page.child to be returned.
Route structure:
[GoRouter] Full paths for routes:
=> /home
=> /profile
When navigating between two routes at the same level,
CupertinoExtendedPage
andMaterialExtendedPage
won't build the correct page widget. It works fine using FlutterMaterialPage
.I found out the problem being caused by an update on both
_PageBasedCupertinoPageRoute
and_PageBasedMaterialPageRoute
buildContent
method making it callsuper.builder
instead of_page.child
and causing the old route_page.child
to be returned.Route structure:
Code Example:
The text was updated successfully, but these errors were encountered: