RadioButtonColors
interface RadioButtonColors
Represents the content colors used in RadioButton in different states.
Summary
Public functions |
|
|---|---|
State<Color> |
@ComposableRepresents the inner dot color for this |
State<Color> |
@ComposableRepresents the outer ring color for this |
Public functions
dotColor
@Composable
fun dotColor(enabled: Boolean, selected: Boolean): State<Color>
Represents the inner dot color for this RadioButton, depending on the enabled and selected properties.
| Parameters | |
|---|---|
enabled: Boolean |
Whether the |
selected: Boolean |
Whether the |
ringColor
@Composable
fun ringColor(enabled: Boolean, selected: Boolean): State<Color>
Represents the outer ring color for this RadioButton, depending on the enabled and selected properties.
| Parameters | |
|---|---|
enabled: Boolean |
Whether the |
selected: Boolean |
Whether the |