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

Ref: 955cad85d63778c24340bbd50aff01dfeaa12f6f Throw error when click [Collect user data](https://github.com/Milad-Akarie/auto_route_library/blob/955cad85d63778c24340bbd50aff01dfeaa12f6f/auto_route/example/lib/mobile/screens/profile/profile_page.dart?_pjax=%23js-repo-pjax-container%2C%20div%5Bitemtype%3D%22http%3A%2F%2Fschema.org%2FSoftwareSourceCode%22%5D%20main%2C%20%5Bdata-pjax-container%5D#L60): ``` ======== Exception caught by foundation library ==================================================== The following assertion was thrown while dispatching notifications for AutoRouterDelegate: setState() or markNeedsBuild()...

The controller dispose after super.dispose() will cause Exception error. In auto_tabs_router.dart, line 144 ```dart @override void dispose() { super.dispose(); if (_controller != null) { _controller!.dispose(); _parentController.removeChildController(_controller!); _controller = null; }...

Thanks for the great router!! 👍 🚀 While building a new Application, I tried to use the nested navigation with a custom sidebar but couldn`t handle to run the example....

In my main function I check if the user is logged in. if the user is logged in, the home page should open otherwise it should go to login. how...

I am not able to push a new Page when using `AutoRouterDelegate.declarative` instead of `_appRouter.delegate()` as routerDelegate, described here [auto_route auth](https://autoroute.vercel.app/advanced/authentication). Router: ```dart MaterialApp.router( debugShowCheckedModeBanner: false, //routerDelegate: _appRouter.delegate(), routerDelegate: AutoRouterDelegate.declarative(...

To Reproduce: - Create A Page that takes a parameter named **user$id** - Register Page in autoroutes - Run flutter packages pub run build_runner build --delete-conflicting-outputs - Check app_route.gr.dart for...

Hi there. I am building an app using `AutoTabsScaffold` with `BottomNavigationBar` on my homepage, which has multiple pages. One of the pages in the homepage uses `AutoTabsRouter.tabBar` inside of it....

Hi, I'm struggling to find a clever way to write Widget Test with auto_route included. I've searched the entire issues for some help and only managed to work with #745....

Currently we are using the AutoTabsScaffold builder function to add a slide transition when switching between tabs. When a new tab is selected, the current tab is instantly replaced with...