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

Hello my Flutter Web App works with that structure but pages can't be accesed directly from URL and pathparams, could you help me to fix this ? Also, I can't...

Add FAB builder to `AutoTabsScaffold`. The `floatingActionButton` parameter is retained. If it is specified the `floatingActionButtonBuilder` parameter is ignored. Please, let me know if you think this should be changed....

Hello everyone, With the latest release 2.2.0 out I think we've fixed and enhanced most of the important navigation concepts and we are now ready to focus on writing some...

enhancement
discussion

Hello @Milad-Akarie Please suggest a way to secure routes using flutter bloc. In below example my bloc state has been changed and text has been set to "authenticated" but router...

Hi, first of all, I think my problem is not a problem of the AutoRouter package but my programming stupidity, but I need some help :) . I am building...

I'm using a declarative router and it works well as long as I only use in-app buttons for the navigation. But when I click on the back button in the...

Support building the `FloatingActionButton` based on router changes in `AutoTabsScaffold`. Much like the `AppBar` and `BottomNavigationBar`, etc.. ```dart AutoTabsScaffold( routes: [...], appBarBuilder: (context, tabsRouter) => ..., bottomNavigationBuilder: (_, tabsRouter) =>...

Ive set up my routes like this: ` @AdaptiveAutoRouter( replaceInRouteName: 'Page,Route', routes: [ AutoRoute(page: LoadingPage, initial: true), AutoRoute( page: LoginPage, children: [ RedirectRoute(path: '*', redirectTo: ''), ], ), AutoRoute( path:...