Skip to content

Instantly share code, notes, and snippets.

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