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

ScreenStage

ScreenStage represents the different stages for a screen, which affect visibility of scaffold components such as TimeText and ScrollIndicator with scrollAway and other animations.

Source set: Android
public class ScreenStage internal constructor(internal val value: Int)

ScreenStage represents the different stages for a screen, which affect visibility of scaffold components such as TimeText and ScrollIndicator with scrollAway and other animations.

Functions

toString

Source set: Android
override fun toString(): String

Members

Companion

Source set: Android
public companion object

Properties

New

Source set: Android
public val New: ScreenStage = ScreenStage(0)

Initial stage for a screen when first displayed. It is expected that the TimeText and ScrollIndicator are displayed when initially showing a screen.

Idle

Source set: Android
public val Idle: ScreenStage = ScreenStage(1)

Stage when both the screen is not scrolling and some time has passed after the screen was initially shown. At this stage, the TimeText is expected to be displayed and the ScrollIndicator will be hidden.

Scrolling

Source set: Android
public val Scrolling: ScreenStage = ScreenStage(2)

Stage when the screen is being scrolled. At this stage, it is expected that the ScrollIndicator will be shown and TimeText will be scrolled away by the scroll operation.

Content updated: