Also why does the checkbox color only change if th...
# compose
j
Also why does the checkbox color only change if the checkbox is enabled? so
Copy code
Checkbox(checked = true, enabled = true, onCheckedChange = {}, colors = CheckboxDefaults.colors(checkedColor = Color.Green, uncheckedColor = Color.Red))
Does work if enabled = false it doesn't show Green
a
Because there is a
disabledColor
parameter.
1