DisposableEffectScope
class DisposableEffectScope
kotlin.Any | |
↳ | androidx.compose.runtime.DisposableEffectScope |
Receiver scope for DisposableEffect that offers the onDispose clause that should be the last statement in any call to DisposableEffect.
Summary
Public constructors | |
---|---|
<init>() Receiver scope for DisposableEffect that offers the onDispose clause that should be the last statement in any call to DisposableEffect. |
Public methods | |
---|---|
DisposableEffectResult |
Provide onDisposeEffect to the DisposableEffect to run when it leaves the composition or its key changes. |
Public constructors
<init>
DisposableEffectScope()
Receiver scope for DisposableEffect that offers the onDispose clause that should be the last statement in any call to DisposableEffect.
Public methods
onDispose
inline fun onDispose(crossinline onDisposeEffect: () -> Unit): DisposableEffectResult
Provide onDisposeEffect to the DisposableEffect to run when it leaves the composition or its key changes.