pop
Pops the current active route off of the backstack using the provided popFunc
Parameters
ignore Transition Lock
If true the router will ignore any active transitions and perform the requested action. If false the router will ignore the request if there is an active transition. This prevents button spamming from opening several routes in a short time span.
pop Func
The function that defines how many and which routes are popped off the stack. See IRoutePopScope.once, IRoutePopScope.toRoute, IRoutePopScope.toClass, IRoutePopScope.whileTrue for more information
router.pop { once() }
router.pop { toRoute(Route.Home) }
router.pop { whileTrue { it !is Route.Test } }
Content copied to clipboard