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

iconColorColor used to tint the icon.
iconContainerColorThe color of the container behind the icon.
progressIndicatorColorColor used to draw the indicator arc of progress indicator.
progressTrackColorColor used to draw the track of progress indicator.
textColorColor 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

iconColorColor used to tint the icon.
iconContainerColorThe color of the container behind the icon.
progressIndicatorColorColor used to draw the indicator arc of progress indicator.
progressTrackColorColor used to draw the track of progress indicator.
textColorColor used to draw the text.