Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created August 9, 2025 02:24
Show Gist options
  • Save skydoves/e611f38fed2047e0c1fbc58709d7823e to your computer and use it in GitHub Desktop.
Save skydoves/e611f38fed2047e0c1fbc58709d7823e to your computer and use it in GitHub Desktop.
RetainedEffect
@Composable
@NonRestartableComposable
public fun RetainedEffect(key1: Any?, effect: RetainedEffectScope.() -> RetainedEffectResult) {
retain(key1) { RetainedEffectImpl(effect) }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment