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

PaneMotion.Type

Indicates the current type of pane motion, like if the pane is entering or exiting, or is kept showing or hidden.

Source set: Common
public class Type private constructor(public val value: Int)

Indicates the current type of pane motion, like if the pane is entering or exiting, or is kept showing or hidden.

Members

Companion

Source set: Common
public companion object

Properties

Hidden

Source set: Common
public val Hidden: Type = Type(0)

Indicates the pane is kept hidden during the current motion.

Exiting

Source set: Common
public val Exiting: Type = Type(1)

Indicates the pane is exiting or hiding during the current motion.

Entering

Source set: Common
public val Entering: Type = Type(2)

Indicates the pane is entering or showing during the current motion.

Shown

Source set: Common
public val Shown: Type = Type(3)

Indicates the pane is keeping being shown during the current motion.

ExitingModal

Source set: Common
public val ExitingModal: Type = Type(5)

Indicates the pane is exiting or hiding as a modal, i.e., a levitated pane, during the current motion.

EnteringModal

Source set: Common
public val EnteringModal: Type = Type(6)

Indicates the pane is entering or showing as a modal, i.e., a levitated pane, during the current motion.

Content updated: