Skip to content

Instantly share code, notes, and snippets.

@skydoves
Last active August 9, 2025 02:25
Show Gist options
  • Save skydoves/75973e31cccbd699258bd82340992a59 to your computer and use it in GitHub Desktop.
Save skydoves/75973e31cccbd699258bd82340992a59 to your computer and use it in GitHub Desktop.
RetainedEffectScope
public class RetainedEffectScope {
public inline fun onRetired(crossinline onRetiredEffect: () -> Unit): RetainedEffectResult =
object : RetainedEffectResult {
override fun retire() {
onRetiredEffect()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment