pop

open override fun pop(ignoreTransitionLock: Boolean, popFunc: RoutePopFunc)

Pops the current active route off of the backstack using the provided popFunc

Parameters

ignoreTransitionLock

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.

popFunc

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 } }