transaction With Result
open suspend override fun <T : Any> transactionWithResult(resultType: KClass<T>, ignoreTransitionLock: Boolean, transaction: IRouterTransactionScope.() -> Unit): Outcome<T, RouteResultError>
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
// HomeScreen.kt
val result = router.transactionWithResult(Boolean::class) {
push(Route.NewRoute1)
} // Outcome.Ok(true)
// NewRoute1Screen.kt
pop { withResult(true) }
Content copied to clipboard