Skip to content

Instantly share code, notes, and snippets.

@AndroidPoet
Created October 14, 2022 01:54
Show Gist options
  • Save AndroidPoet/fe9a8a9bb2ae4347311d5f2f67ab7020 to your computer and use it in GitHub Desktop.
Save AndroidPoet/fe9a8a9bb2ae4347311d5f2f67ab7020 to your computer and use it in GitHub Desktop.
@Composable
fun DemoLaunchedEffect(key1: String, key2: String, key3: String, list: Array<String>) {
LaunchedEffect(key1 = key1) {
//CoroutineScope
}
LaunchedEffect(key1 = key1, key2 = key2) {
//CoroutineScope
}
LaunchedEffect(key1 = key1, key2 = key2, key3 = key3) {
//CoroutineScope
}
LaunchedEffect(keys = list) {
//CoroutineScope
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment