OpenOnPhoneDialogColors

Class
Android
public class OpenOnPhoneDialogColors(
    public val iconColor: Color,
    public val iconContainerColor: Color,
    public val progressIndicatorColor: Color,
    public val progressTrackColor: Color,
    public val textColor: Color,
)

Represents the colors used in OpenOnPhoneDialog.

Parameters

iconColor Color used to tint the icon.
iconContainerColor The color of the container behind the icon.
progressIndicatorColor Color used to draw the indicator arc of progress indicator.
progressTrackColor Color used to draw the track of progress indicator.
textColor Color used to draw the text.

Functions

public fun copy(
        iconColor: Color = this.iconColor,
        iconContainerColor: Color = this.iconContainerColor,
        progressIndicatorColor: Color = this.progressIndicatorColor,
        progressTrackColor: Color = this.progressTrackColor,
        textColor: Color = this.textColor,
    ): OpenOnPhoneDialogColors

Returns a copy of this OpenOnPhoneDialogColors optionally overriding some of the values.

Parameters

iconColor Color used to tint the icon.
iconContainerColor The color of the container behind the icon.
progressIndicatorColor Color used to draw the indicator arc of progress indicator.
progressTrackColor Color used to draw the track of progress indicator.
textColor Color used to draw the text.