Skip to content

Instantly share code, notes, and snippets.

@takahirom
Created December 4, 2021 09:05
Show Gist options
  • Save takahirom/b0b137a44e7aa2b51afb7412189cdb5c to your computer and use it in GitHub Desktop.
Save takahirom/b0b137a44e7aa2b51afb7412189cdb5c to your computer and use it in GitHub Desktop.
@Composable
fun MySwitch() {
​// remember{} is used.
​var checked = remember { 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