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

It could be a nice feature to have. It is based on the NextJs routing system that allows pushing a new route without reloading the page completely: https://nextjs.org/docs/pages/building-your-application/routing/linking-and-navigating#shallow-routing maybe something...

i have these routes ``` AutoRoute(path: '/dashboard', page: HomeRouteNavigation.page,children: [ AutoRoute( path: 'vendors', page: VendorsNavigationRoute.page, children: [ AutoRoute(path: '', page: VendorsRoute.page), AutoRoute(path: ':vendor-id', page: EditVendorRoute.page, children: [ AutoRoute(path:'branches',page: VendorBranchesRoute.page,children:[ AutoRoute(path:':branch-id',page:...

Initial setup: - I have a list of 3 children in the `router` Expected behavior: - when I load main screen for the first time and specify `home index` in...

I am using a AutoTabsScaffold in my home screen of my app. I have used this way to define nested navigation graphs @RoutePage(name: 'FavoritesRouter') class FavoritesRouterPage extends AutoRouter {} I...

no-issue-activity

Hi, I configured the `@RoutePage()` to retrieve a specific value but encountered crashes. ```dart @RoutePage() class LoginPage extends StatelessWidget { // Your code here } ``` ```dart abstract class _$AppRouter...

I'm getting this error when I tried to write testcase for Bottom Navigation bar that uses AutoRouterScaffold _"RouteData operation requested with a context that does not include an RouteData. The...

When I try to navigate by clicking a button in modal, which is still animating, the navigation throws an Exception. If animation has stopped, everything works fine. Video demonstration [Screen_recording_20231211_144050.webm](https://github.com/Milad-Akarie/auto_route_library/assets/38427679/36bf614b-80e4-4cfe-9e6d-d519d1ce08b5)...

I tried to apply the same logic as said in the docs for a simple auth guard, this is my `AppRouter`: ``` @AutoRouterConfig( replaceInRouteName: 'View,Route', ) class AppRouter extends _$AppRouter...

It will be nice to add an attribute for a custom semantic label on `AutoLeadingButton`.

The system back button closes the app on Android when it's supposed go back to the previous page. The issue does not occur on Android 10. It occurs on Android...

no-issue-activity