-
-
Save skydoves/7bd124f79660e82cd58d64ccd7e8b0e0 to your computer and use it in GitHub Desktop.
disposable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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