Represents the container and content colors used in a card in different states.

Summary

Public constructors

CardColors(
    containerColor: Color,
    contentColor: Color,
    disabledContainerColor: Color,
    disabledContentColor: Color
)

create an instance with arbitrary colors.

Cmn

Public functions

CardColors
copy(
    containerColor: Color,
    contentColor: Color,
    disabledContainerColor: Color,
    disabledContentColor: Color
)

Returns a copy of this CardColors, optionally overriding some of the values.

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

Public properties

Color

the container color of this Card when enabled.

Cmn
Color

the content color of this Card when enabled.

Cmn
Color

the container color of this Card when not enabled.

Cmn
Color

the content color of this Card when not enabled.

Cmn

Public constructors

CardColors

CardColors(
    containerColor: Color,
    contentColor: Color,
    disabledContainerColor: Color,
    disabledContentColor: Color
)

create an instance with arbitrary colors.

Parameters
containerColor: Color

the container color of this Card when enabled.

contentColor: Color

the content color of this Card when enabled.

disabledContainerColor: Color

the container color of this Card when not enabled.

disabledContentColor: Color

the content color of this Card when not enabled.

Public functions

copy

fun copy(
    containerColor: Color = this.containerColor,
    contentColor: Color = this.contentColor,
    disabledContainerColor: Color = this.disabledContainerColor,
    disabledContentColor: Color = this.disabledContentColor
): CardColors

Returns a copy of this CardColors, optionally overriding some of the values. This uses the Color.Unspecified to mean “use the value from the source”

equals

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

hashCode

open fun hashCode(): Int

Public properties

containerColor

val containerColorColor

the container color of this Card when enabled.

contentColor

val contentColorColor

the content color of this Card when enabled.

disabledContainerColor

val disabledContainerColorColor

the container color of this Card when not enabled.

disabledContentColor

val disabledContentColorColor

the content color of this Card when not enabled.