-
-
Save skydoves/e611f38fed2047e0c1fbc58709d7823e to your computer and use it in GitHub Desktop.
RetainedEffect
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 | |
| @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