Skip to content

Instantly share code, notes, and snippets.

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