Checkboxes allow users to select one or more items from a set.

Checkbox preview
RevenueCat

RevenueCat

Add subscriptions to your apps in minutes

Ad Get started for free

CheckboxSample

@Composable
fun CheckboxSample() {
    val checkedState = remember { mutableStateOf(true) }
    Checkbox(checked = checkedState.value, onCheckedChange = { checkedState.value = it })
}