Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saqib-github-commits/e8995138ee5f7dde2b3d16dc6526f5f8 to your computer and use it in GitHub Desktop.
Save saqib-github-commits/e8995138ee5f7dde2b3d16dc6526f5f8 to your computer and use it in GitHub Desktop.
class DisposableEffectScope {
/**
* Provide [onDisposeEffect] to the [DisposableEffect] to run when it leaves the composition
* or its key changes.
*/
inline fun onDispose(
crossinline onDisposeEffect: () -> Unit
): DisposableEffectResult = object : DisposableEffectResult {
override fun dispose() {
onDisposeEffect()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment