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, I have a route like this: ```dart // Prova AutoRoute( path: '/prova', page: EmptyRouterPage, children: [ AutoRoute( path: ':idProva', page: ProvaView, ), AutoRoute( path: ':idProva/contexto', page: ContextoProvaView, ), AutoRoute(...

Cannot return value for second page with back button. When I'm trying to override back button with WillPopScope then I'm getting stack overflow error. `E/flutter ( 786): [ERROR:flutter/lib/ui/ui_dart_state.cc(199)] Unhandled Exception:...

hello How can I pass an argument? The code below is an example. I want to know how to pass arguments. ``` @MaterialAutoRouter( replaceInRouteName: 'Screen,Route', routes: [ AutoRoute(page: Home, path:...

I used the example (https://autoroute.vercel.app/advanced/bottom_navigation_bar_routing) and it works great except for one detail: if I go from the first tab to the second, and then press the "Back" button, then...

Hello, and thanks for such wonderful library! The problem I faced with - to dynamically change Query arguments. There is 2 use cases where I need that: 1. Add parallel...

no-issue-activity

This is an anonymous automated crash report. ``` StateError: Bad state: Future already completed File "future_impl.dart", line 44, in _AsyncCompleter.complete File "navigator.dart", line 360, in Route.didComplete File "navigator.dart", line 338,...

Let's say my current stack is `A,B,C` (A is the root page, C is the current page). I want to replace A with D. So the stack should be changed...

auto_route: 4.0.0 auto_route_generator: 4.0. 0

hi, How can I disable BottomNavigationBar on a specific page? (Nested Routes)

Hello, I am searching for a way to pass same arguments to nested routes. For instance, you have a car detail page which has child pages for more information: ```dart...