Router
Router the primary implementation of IRouter
Functions
Adds a lifecycle listener to the current route. onRouteStarted() is called immediately. The listener is automatically removed when the route is destroyed.
Returns true
if there is a route to pop off of the route stack
Allows the router to block spamming of push/pop operations if a transition is ongoing. Implementers of Router should call this at the start and end of any Route transition.
Pops the current active route off of the backstack using the provided popFunc
Navigates to the given route and moves the current active route to an inactive state
Navigates to the given route and moves the current active route to an inactive state
Allows performing several routing operations in a single transaction. routeFlow collectors will only be notified at the end of the transaction a single time.
Does everything IRouter.transaction does but suspends until a result is set by IRoutePopScope.withResult or until the top route is popped off the stack. The last statement in transactionWithResult should be a push or replace