🌈 Create new beautiful Compose Gradients with our new wesite ->
Class

TimePickerShapes

The shapes that will be used in time pickers.

Source set: Common
public class TimePickerShapes(
    /** Shape used for the time fields. */
    public val timeFieldShape: Shape,
    /** Shape used for the AM/PM toggle. */
    public val periodSelectorShape: Shape,
)

The shapes that will be used in time pickers.

Parameters

timeFieldShape shape used for the time fields
periodSelectorShape shape used for the AM/PM toggle

Functions

copy

Source set: Common
public fun copy(
        timeFieldShape: Shape? = this.timeFieldShape,
        periodSelectorShape: Shape? = this.periodSelectorShape,
    ): TimePickerShapes

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

Parameters

timeFieldShape shape used for the time fields. If null, the existing timeFieldShape will be used.
periodSelectorShape shape used for the AM/PM toggle. If null, the existing periodSelectorShape will be used.

Return

a copy of this TimePickerShapes

equals

Source set: Common
override fun equals(other: Any?): Boolean

hashCode

Source set: Common
override fun hashCode(): Int

Content updated: