Skip to content

Instantly share code, notes, and snippets.

@takahirom
Created December 4, 2021 09:06
Show Gist options
  • Save takahirom/57b9e9d845b406f900dd64c3d7107d41 to your computer and use it in GitHub Desktop.
Save takahirom/57b9e9d845b406f900dd64c3d7107d41 to your computer and use it in GitHub Desktop.
@Composable
fun MySwitch() {
​val checked = mutableStateOf(false)
​println("MySwitch(): $checked")
​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