HandleBooleanResult

fun NavHostController.HandleBooleanResult(retain: Boolean = false, onResult: Boolean.() -> Unit)

Handles a Route.Result.Data matching a Boolean Requires that the Route.Result.Data.bundle is described by a SingleValueNavigationSpec matching NavigationBundleSpecType.BooleanType

Parameters

retain

If true the result will be retained in the NavBackStackEntry. It will be deleted otherwise.

onResult

Method for handling the received Boolean

Throws