Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created March 6, 2024 06:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skydoves/863da37340b001cab958da8fb700e998 to your computer and use it in GitHub Desktop.
Save skydoves/863da37340b001cab958da8fb700e998 to your computer and use it in GitHub Desktop.
launched_effect
@Composable
@NonRestartableComposable
@OptIn(InternalComposeApi::class)
fun LaunchedEffect(
key1: Any?,
block: suspend CoroutineScope.() -> Unit
) {
val applyContext = currentComposer.applyCoroutineContext
remember(key1) { LaunchedEffectImpl(applyContext, block) }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment