Skip to content

Instantly share code, notes, and snippets.

@takahirom
Created December 4, 2021 09:32
Show Gist options
  • Save takahirom/7d3251b0fd89892db3139fe67af171ab to your computer and use it in GitHub Desktop.
Save takahirom/7d3251b0fd89892db3139fe67af171ab to your computer and use it in GitHub Desktop.
@Composable
fun Screen() {
MySwitch()
}
@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