Skip to content

Instantly share code, notes, and snippets.

@saqib-github-commits
Created April 28, 2023 16:31
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 saqib-github-commits/10dd6f8f244459c4ed461dd790acdd5f to your computer and use it in GitHub Desktop.
Save saqib-github-commits/10dd6f8f244459c4ed461dd790acdd5f to your computer and use it in GitHub Desktop.
@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