auto_route_library icon indicating copy to clipboard operation
auto_route_library copied to clipboard

Flutter route generator

Results 299 auto_route_library issues
Sort by recently updated
recently updated
newest added

### Error: I am receiving `Error: SelectGameDifficultyRouteArgs can not be null because it has a required parameter` after web app browser window resize. I am sure that args are not...

Hi, I am using the `AutoTabsScaffold` for managing my Scaffold Bottom Navigation Bar and It is providing the bottom Navigation bar to every screen. What would be the best approach...

How to open Drawer programmatically in AutoTabsScaffold ? like a Scaffold.of(context).openDrawer()

I am using this library and is working very well, but now, I get to the point where I need the user to be able to open profile page, from...

As i understand it, reverseDurationInMilliseconds should effect the animation duration on a "pop" / "back" interaction on the page. Im using it as follows (i essentially want to disable any...

Hi. Love the auto_route plugin and really appreciate your work with this. Makes navigation a lot easier :) However, I'm encountering the problem with AutoRouteAware screens. I'm using flutter hooks...

**Summary** When i go back (hardware button) the route remain in the tree even if no longer visible **Router:** ```dart @MaterialAutoRouter( replaceInRouteName: 'Page,Route', routes: [ AutoRoute(path: '/login', page: LoginPage, initial:...

I expect to write role guard like this. ``` import 'package:auto_route/auto_route.dart'; import 'package:hybrid/helpers/helpers.dart'; import 'package:hybrid/services/account_service.dart'; class RoleGuard extends AutoRouteGuard { RoleGuard({required this.allowedRoles}); List allowedRoles = []; final AccountService _accountService =...

First off all, thanks for this routing library, all works great. Now im trying to build nested routes and i think im doing something wrong or there is unexpected behaviour...