Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created November 9, 2024 00:32
Show Gist options
  • Save skydoves/7bd124f79660e82cd58d64ccd7e8b0e0 to your computer and use it in GitHub Desktop.
Save skydoves/7bd124f79660e82cd58d64ccd7e8b0e0 to your computer and use it in GitHub Desktop.
disposable
@Composable
fun MyComposableWithListener(listener: SomeListener) {
DisposableEffect(listener) {
listener.register() // Called when entering the composition
onDispose {
listener.unregister() // Called when leaving the composition
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment