Skip to content

Instantly share code, notes, and snippets.

@takahirom
Created December 4, 2021 09:20
Show Gist options
  • Save takahirom/667b5e016f361765f4e9f85c681635d3 to your computer and use it in GitHub Desktop.
Save takahirom/667b5e016f361765f4e9f85c681635d3 to your computer and use it in GitHub Desktop.
@Composable
fun MySwitch(initialEnabled: Boolean) {
val checked = remember { mutableStateOf(initialEnabled) }
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