skip to Main Content

Flutter Go_router, save history of routes

I have this code of router final _router = GoRouter( routes: [ GoRoute( path: '/', builder: (BuildContext context, GoRouterState state) { return const LoginScreenWidget(); }, routes: <RouteBase>[ GoRoute( path: 'main', builder: (BuildContext context, GoRouterState state) { return const MainScreenWidget(); },…

VIEW QUESTION
Back To Top
Search