AppRouter class
The application router. Contains all routes of the application.
In order to add a route to the application, do the following:
- Add
@RoutePage()
to your screen widget:
import 'package:lb_planner/shared/shared.dart';
@PageRoute() // <-- add this
class MyScreen extends StatelessWidget {
const MyScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(
child: Text('My Screen'),
),
);
}
}
- If you want the screen to have a sidebar, add SidebarWrapperMixin to your screen widget:
import 'package:lb_planner/shared/shared.dart';
@PageRoute()
class MyScreen extends StatelessWidget with SidebarWrapperMixin {
// ^^^^^^^^^^^^^^^^^^^ <-- add this
const MyScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(
child: Text('My Screen'),
),
);
}
}
- Run
build_runner
flutter pub run build_runner build --delete-conflicting-outputs
- Import your screen in
app_router.dart
:
import 'package:lb_planner/path/to/my/screen.dart'
- Add the generated route to the routes list:
@override
List<AutoRoute> get routes => [
DefaultRoute(
page: ThemeDevelopmentRoute.page,
path: '/theme-development',
),
DefaultRoute(
page: MyRoute.page, // <-- this is the generated route based off of [MyScreen]
path: '/my-route', // the path of the route
),
];
-
If you want the rote to appear in the sidebar, see Sidebar.
-
For subroutes, just do the same and for the path use
parent-path/subroute-path
:
@override
List<AutoRoute> get routes => [
DefaultRoute(
page: ThemeDevelopmentRoute.page,
path: '/theme-development',
),
DefaultRoute(
page: MyRoute.page, // <-- this is the generated route based on [MyScreen]
path: '/theme-development/my-route', // in this example the parent path is '/theme-development', so [MyRoute] is a subroute of [ThemeDevelopmentRoute]
),
];
This is particularly useful when using the Sidebar. Consider having a main route like /admin accessible from the Sidebar, and under this main route, there might be additional pages not directly linked in the sidebar—subroutes. These subroutes, like /admin/sub-page, can be accessed through the main /admin route. To maintain a consistent navigation experience, the sidebar should highlight the admin item as active, even when navigating its subroutes.
- Inheritance
-
- Object
- RoutingController
- StackRouter
- RootStackRouter
- AppRouter
- Annotations
-
- @AutoRouterConfig(replaceInRouteName: 'Screen,Route')
Constructors
Properties
- activeGuardObserver → ActiveGuardObserver
-
The active guards observer of this controller
finalinherited
-
See
NavigationHistory.canNavigateBack
read-onlyinherited -
childControllers
→ List<
RoutingController> -
Holds track of the list of attached child controllers
read-onlyinherited
- current → RouteData
-
Returns currentChild if it's rendered
otherwise returns parent routeData
read-onlyinherited
- currentChild → RouteData?
-
The active child representation of an implementation of this controller
read-onlyinherited
- currentPath → String
-
Helper to access
NavigationHistory.urlState.path
read-onlyinherited -
currentSegments
→ List<
RouteMatch> -
Collects the top-most visitable current-child of
every top-most nested controller considering this controller as root
read-onlyinherited
- currentUrl → String
-
Helper to access
NavigationHistory.urlState.url
read-onlyinherited - defaultRouteType → RouteType
-
The default animation
read-onlyinherited
- hasEntries → bool
-
Whether this controller has rendered pages
read-onlyinherited
- hashCode → int
-
The hash code for this object.
read-onlyinherited
- hasListeners → bool
-
Whether any listeners are currently registered.
read-onlyinherited
- hasPagelessTopRoute → bool
-
Whether the top-most route of this controller is page-less
read-onlyinherited
- ignorePopCompleters ↔ bool
-
Whether AutoRoutePage should await for pop-completer
read / writeinherited
- isRoot → bool
-
Whether is controller is the root of all controllers
read-onlyinherited
- isTopMost → bool
-
Whether this controller has the top-most visible page
read-onlyinherited
- key → LocalKey
-
The Identifier key of this routing controller
finalinherited
- managedByWidget → bool
-
Whether is router is used by a declarative-routing widget
read-onlyinherited
- matcher → RouteMatcher
-
The matcher used by this controller
see
RouteMatcher
latefinalinherited -
The instance of
NavigationHistory
to be used by this routerread-onlyinherited -
Navigator key passed to Navigator.key
read-onlyinherited
- pageBuilder → PageBuilder
-
The builder used to build routable pages
read-onlyinherited
- pageCount → int
-
The count of rendered pages
read-onlyinherited
- pagelessRoutesObserver → PagelessRoutesObserver
-
The page-less route observer of this controller
finalinherited
-
pagesMap
→ Map<
String, PageFactory> -
The map holding the page names and their factories
finalinherited
- parentAsStackRouter → StackRouter?
-
Returns parent route as StackRouter
read-onlyinherited
- pathState → Object?
-
See
NavigationHistory.pathState
read-onlyinherited - pendingRoutesHandler → PendingRoutesHandler
-
The pending routes handler for this controller
latefinalinherited
- root → RootStackRouter
-
Returns the root router as RootStackRouter
read-onlyinherited
- routeCollection → RouteCollection
-
The list of routes consumed by this controller
latefinalinherited
- routeData → RouteData
-
The data of the parent route
read-onlyinherited
-
routes
→ List<
AutoRoute> -
The list of route entries to match against
read-onlyoverride
- runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
-
stack
→ List<
AutoRoutePage> -
The current pages stack of this controller
read-onlyinherited
-
stackData
→ List<
RouteData> -
Returns an unmodifiable lis of current pages stack data
read-onlyinherited
- stateHash → int
-
Takes a state snapshot of the current segments
read-onlyinherited
- topMatch → RouteMatch
-
The top-most rendered or pending route match
read-onlyinherited
- topPage → AutoRoutePage?
-
The top-most visible page
read-onlyinherited
- topRoute → RouteData
-
The top-most rendered route
read-onlyinherited
- urlState → UrlState
-
Helper to access
NavigationHistory.urlState
read-onlyinherited
Methods
-
addListener(
VoidCallback listener) → void -
Register a closure to be called when the object changes.
inherited
-
attachChildController(
RoutingController childController) → void -
Adds the given controller to the list of childControllers
inherited
-
back(
) → void -
See
NavigationHistory.back
inherited -
buildPageRoute(
String? path, {bool includePrefixMatches = true}) → PageRouteInfo? -
Finds match of
path
then returns a route-able entityinherited -
buildPageRoutesStack(
String? path, {bool includePrefixMatches = true}) → List< PageRouteInfo> ? -
Finds matches of
path
then returns a list of route-able entitiesinherited -
canPop(
{bool ignoreChildRoutes = false, bool ignoreParentRoutes = false, bool ignorePagelessRoutes = false}) → bool -
Whether this controller can preform pop
inherited
-
config(
{List< PageRouteInfo> ? initialRoutes, String? initialDeepLink, DeepLinkBuilder? deepLinkBuilder, WidgetBuilder? placeholder, bool includePrefixMatches = !kIsWeb, bool neglectWhen(String? location)?, bool rebuildStackOnDeepLink = false, Listenable? reevaluateListenable}) → RouterConfig<UrlState> -
Returns a RouterConfig instead to be passed
to MaterialApp.router
inherited
-
currentHierarchy(
{bool asPath = false, bool ignorePending = false, bool ignoreParams = false}) → List< HierarchySegment> -
Builds a simplified hierarchy of current stacks
inherited
-
declarativeDelegate(
{required RoutesBuilder routes, RoutePopCallBack? onPopRoute, String? initialDeepLink, DeepLinkBuilder? deepLinkBuilder, ) → AutoRouterDelegate -
Builds a lazy instance of AutoRouterDelegate.declarative
inherited
-
defaultRouteParser(
{bool includePrefixMatches = !kIsWeb}) → DefaultRouteParser -
Builds a lazy instance of DefaultRouteParser
inherited
-
delegate(
{List< PageRouteInfo> ? initialRoutes, String? initialDeepLink, WidgetBuilder? placeholder, DeepLinkBuilder? deepLinkBuilder, bool rebuildStackOnDeepLink = false, Listenable? reevaluateListenable}) → AutoRouterDelegate -
Builds a lazy instance of AutoRouterDelegate
_lazyRootDelegate is only built one time
inherited
-
dispose(
) → void -
Discards any resources used by the object. After this is called, the
object is not in a usable state and should be discarded (calls to
addListener will throw after the object is disposed).
inherited
-
innerRouterOf<
T extends RoutingController> (String routeName) → T? -
Finds a child route corresponding to
routeName
and casts it toT
inherited -
isPathActive(
String path) → bool -
See
NavigationHistory.isPathActive
inherited -
isRouteActive(
String routeName) → bool -
See
NavigationHistory.isRouteActive
inherited -
isRouteDataActive(
RouteData data) → bool -
See
NavigationHistory.isRouteDataActive
inherited -
markUrlStateForReplace(
) → void -
See
NavigationHistory.markUrlStateForReplace
inherited -
match(
PageRouteInfo route) → RouteMatch? -
Helper to find route match
See
RouteMatcher.matchByRoute
inherited -
Pops until given
route
, if it already exists in stack otherwise adds it to the stack (good for web Apps and to avoid duplicate entries).inherited -
Preforms pop-until finds cosponsoring route with
routes
.first then pushes allroutes
inherited -
See
NavigationHistory.back
inherited -
Pops until given
path
, if it already exists in stack otherwise adds it to the stackinherited -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
notifyAll(
{bool forceUrlRebuild = false}) → void -
Notify this controller for changes then notify root controller
if they're not the same
inherited
-
notifyListeners(
) → void -
Call all the registered listeners.
inherited
-
parent<
T extends RoutingController> () → T? -
Casts parent controller to
T
inherited -
pop<
T extends Object?> ([T? result]) → Future< bool> -
Clients can either pop their own
_pages
stack or defer the call to a parent controllerinherited -
popAndPush<
T extends Object?, TO extends Object?> (PageRouteInfo route, {TO? result, OnNavigationFailure? onFailure}) → Future< T?> -
Pop the current route off the navigator and push the given
route
in its place.inherited -
popAndPushAll(
List< PageRouteInfo> routes, {dynamic onFailure}) → Future<void> -
Pop the current route off the navigator and push all given
routes
in its place.inherited -
popForced<
T extends Object?> ([T? result]) → void -
Pop current route regardless if it's the last
route in stack or the result of it's willPopScopes
see Navigator.pop
inherited
-
popTop<
T extends Object?> ([T? result]) → Future< bool> -
Calls pop on the controller with the top-most visible page
inherited
-
popUntil(
RoutePredicate predicate, {bool scoped = true}) → void -
Calls pop repeatedly on the navigator until the predicate returns true.
inherited
-
popUntilRoot(
) → void -
Pop the whole stack except for the first entry
inherited
-
popUntilRouteWithName(
String name, {bool scoped = true}) → void -
Helper to pop all routes until route with
name
is found see popUntilinherited -
popUntilRouteWithPath(
String path, {bool scoped = true}) → void -
Helper to pop all routes until route with
path
is found see popUntilinherited -
push<
T extends Object?> (PageRouteInfo route, {OnNavigationFailure? onFailure}) → Future< T?> -
Adds the corresponding page to given
route
to the_pages
stackinherited -
pushAll(
List< PageRouteInfo> routes, {OnNavigationFailure? onFailure}) → Future<void> -
Adds the corresponding pages to given
routes
list to the_pages
stack at onceinherited -
pushAndPopUntil<
T extends Object?> (PageRouteInfo route, {required RoutePredicate predicate, bool scopedPopUntil = true, OnNavigationFailure? onFailure}) → Future< T?> -
Push the given
route
onto the navigator, and then pop all the previous routes until thepredicate
returns true.inherited -
pushNamed<
T extends Object?> (String path, {bool includePrefixMatches = false, OnNavigationFailure? onFailure}) → Future< T?> -
Adds corresponding page to given
path
to_pages
stackinherited -
pushNativeRoute<
T extends Object?> (Route< T> route) → Future<T?> -
Pushes a Route to Navigator
inherited
-
pushPathState(
Object? state) → void -
See
NavigationHistory.pushPathState
inherited -
pushWidget<
T extends Object?> (Widget widget, {RouteTransitionsBuilder? transitionBuilder, bool fullscreenDialog = false, Duration transitionDuration = const Duration(milliseconds: 300), bool opaque = true}) → Future< T?> -
Pushes a raw widget to Navigator
inherited
-
reevaluateGuards(
) → Future< void> -
Re-builds all routes in stack and reevaluate guarded
once by re-visiting the onNavigation method when evaluation logic changes
inherited
-
removeChildController(
RoutingController childController) → void -
removes the given controller from the list of childControllers
inherited
-
removeLast(
) → bool -
Removes the very last entry from
_pages
inherited -
removeListener(
VoidCallback listener) → void -
Remove a previously registered closure from the list of closures that are
notified when the object changes.
inherited
-
removeRoute(
RouteData route, {bool notify = true}) → void -
Removes given
route
and any corresponding controllers or redirect-guardsinherited -
removeUntil(
RouteDataPredicate predicate, {bool scoped = true}) → bool -
Calls removeRoute repeatedly until the predicate returns true.
inherited
-
removeWhere(
RouteDataPredicate predicate, {bool notify = true}) → bool -
Removes any route that satisfied the
predicate
.inherited -
replace<
T extends Object?> (PageRouteInfo route, {OnNavigationFailure? onFailure}) → Future< T?> -
Removes last entry in stack and pushes given
route
if last entry ==route
page will just be updatedinherited -
replaceAll(
List< PageRouteInfo> routes, {OnNavigationFailure? onFailure, bool updateExistingRoutes = true}) → Future<void> -
Remove the whole current pages stack and push all given
routes
inherited -
replaceNamed<
T extends Object?> (String path, {bool includePrefixMatches = false, OnNavigationFailure? onFailure}) → Future< T?> -
Removes last entry in stack and pushes given
path
if last entry.path ==path
page will just be updatedinherited -
routeInfoProvider(
{RouteInformation? initialRouteInformation, bool neglectWhen(String? location)?}) → AutoRouteInformationProvider -
Builds a lazy instance of AutoRouteInformationProvider
inherited
-
topMostRouter(
{bool ignorePagelessRoutes = false}) → RoutingController -
Finds the router with top-most visible page
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
updateDeclarativeRoutes(
List< PageRouteInfo> routes) → void -
Replaces the list of
_pages
with givenroutes
result used by declarative routing widgetsinherited -
updateRouteData(
RouteData data) → void -
Updates the value of routeData
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited