class ButtonColors


Represents the container and content colors used in buttons, such as textEdgeButton or iconEdgeButton.

Summary

Public constructors

ButtonColors(container: LayoutColor, icon: LayoutColor, label: LayoutColor)

Public properties

LayoutColor

The container color to be used for a button.

LayoutColor

The icon tint color to be used for a button.

LayoutColor

The label color to be used for a button.

Public constructors

ButtonColors

Added in 1.3.0-alpha06
ButtonColors(
    container: LayoutColor = Color.BLACK.argb,
    icon: LayoutColor = Color.BLACK.argb,
    label: LayoutColor = Color.BLACK.argb
)

Public properties

container

Added in 1.3.0-alpha06
val containerLayoutColor

The container color to be used for a button.

icon

Added in 1.3.0-alpha06
val iconLayoutColor

The icon tint color to be used for a button.

label

Added in 1.3.0-alpha06
val labelLayoutColor

The label color to be used for a button.