🌈 Create new beautiful Compose Gradients with our new wesite ->
Compose Component

Switch

Material Design switch Switches toggle the state of a single item on or off.

Switch social preview

SwitchSample

@Sampled
@Composable
fun SwitchSample() {
    val checkedState = remember { mutableStateOf(true) }
    Switch(checked = checkedState.value, onCheckedChange = { checkedState.value = it })
}