Skip to content

Instantly share code, notes, and snippets.

@takahirom
Created December 4, 2021 09:03
Show Gist options
  • Save takahirom/5140d87f7dd63069722814d17d0adbf4 to your computer and use it in GitHub Desktop.
Save takahirom/5140d87f7dd63069722814d17d0adbf4 to your computer and use it in GitHub Desktop.
@Composable
fun MySwitch() {
​// remember{} is not used.
​var checked = mutableStateOf(false)
​Switch(
​checked = checked.value,
​onCheckedChange = {
​checked.value = it
​}
​)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment