class RadioColors


Represents the content colors used in the Radio selection control in different states.

Summary

Public constructors

RadioColors(
    selectedColor: Color,
    unselectedColor: Color,
    disabledSelectedColor: Color,
    disabledUnselectedColor: Color
)

Public functions

open operator Boolean
equals(other: Any?)
open Int

Public properties

Color

The color of the radio control when disabled and selected.

Color

The color of the radio control when disabled and unselected.

Color

The color of the radio control when enabled and selected.

Color

The color of the radio control when enabled and unselected.

Public constructors

RadioColors

RadioColors(
    selectedColor: Color,
    unselectedColor: Color,
    disabledSelectedColor: Color,
    disabledUnselectedColor: Color
)
Parameters
selectedColor: Color

The color of the radio control when enabled and selected.

unselectedColor: Color

The color of the radio control when enabled and unselected.

disabledSelectedColor: Color

The color of the radio control when disabled and selected.

disabledUnselectedColor: Color

The color of the radio control when disabled and unselected.

Public functions

equals

open operator fun equals(other: Any?): Boolean

hashCode

open fun hashCode(): Int

Public properties

disabledSelectedColor

Added in 1.0.0-alpha21
val disabledSelectedColorColor

The color of the radio control when disabled and selected.

disabledUnselectedColor

Added in 1.0.0-alpha21
val disabledUnselectedColorColor

The color of the radio control when disabled and unselected.

selectedColor

Added in 1.0.0-alpha21
val selectedColorColor

The color of the radio control when enabled and selected.

unselectedColor

Added in 1.0.0-alpha21
val unselectedColorColor

The color of the radio control when enabled and unselected.