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

Initial deep link navigates to the link provided for 2 secs and goes back to the normal route could you please help me to resolve this

More of a question than an issue: imagine having a routing setup like this: from inside `child 2` I'm trying to go to and open `child 1` with messing up...

when I push another page, bottom nav widgets or AutoTabsScaffold rebuilding. video : https://youtu.be/70iycBwTE5E

Here is my router: ```dart @MaterialAutoRouter( replaceInRouteName: 'Page,View,Route', routes: [ AutoRoute( path: '/home', page: HomePage, children: [ AutoRoute(initial: true, path: 'overview', page: OverviewPage), AutoRoute( path: 'catalogue', page: CatalogueBasePage, children: [...

Hi, How do I move from a Main Route to a Bottom Navigation Bar (Nested Routes)? Whatever I do I get the following error `[Root Router] Router can not navigate...

@Milad-Akarie I have router setup like that: - Stack Route A - Stack Route B --> Tab Route C (initial) --> Tab Route D I'm currently using `AutoRouteAwareStateMixin` in Tab...

Hi, is it possible to give us possibility to separate our children lists into other variables? Like this: ``` AutoRoute( page: RouteWrapper, name: 'profile ', path: 'profile', children: profileRoutes,

Hey @Milad-Akarie, this is a great package for managing route Previously I managed to deploying flutter on netlify until yesterday it failed with error message: > "Error: Required named parameter...

My use case is that the next page is stored in a String and is determined dynamically. So I need to navigate to the next page using paths. This code...

I've separated app into `package`s and every `package` has `screens`/`routes`. I create `MaterialAutoRouter` and I pass `route`s from local modules into `MaterialAutoRoute` `routes` parameter. When I run `build_runner` I get...