CheckboxColors
interface CheckboxColors
Represents the content colors used in Checkbox in different states.
Summary
Public functions |
|
|---|---|
State<Color> |
@ComposableRepresents the box color for this |
State<Color> |
@ComposableRepresents the checkmark color for this |
Public functions
boxColor
Added in 1.1.0
@Composable
fun boxColor(enabled: Boolean, checked: Boolean): State<Color>
Represents the box color for this Checkbox, depending on the enabled and checked properties.
checkmarkColor
Added in 1.1.0
@Composable
fun checkmarkColor(enabled: Boolean, checked: Boolean): State<Color>
Represents the checkmark color for this Checkbox, depending on the enabled and checked properties.