DrawerState


State of the ModalDrawer composable.

Summary

Public companion functions

Saver<DrawerStateDrawerValue>
Saver(confirmStateChange: (DrawerValue) -> Boolean)

The default Saver implementation for DrawerState.

Cmn

Public constructors

DrawerState(
    initialValue: DrawerValue,
    confirmStateChange: (DrawerValue) -> Boolean
)
Cmn

Public functions

suspend Unit

This function is deprecated. This method has been replaced by the open and close methods.

Cmn
suspend Unit

Close the drawer with animation and suspend until it if fully closed or animation has been cancelled.

Cmn
suspend Unit

Open the drawer with animation and suspend until it if fully opened or animation has been cancelled.

Cmn
suspend Unit
snapTo(targetValue: DrawerValue)

Set the state without any animation and suspend until it's set

Cmn

Public properties

DrawerValue

The current value of the state.

Cmn
Boolean

Whether the state is currently animating.

Cmn
Boolean

Whether the drawer is closed.

Cmn
Boolean

Whether the drawer is open.

Cmn
Float

The current position (in pixels) of the drawer sheet, or Float.NaN before the offset is initialized.

Cmn
DrawerValue

The target value of the drawer state.

Cmn

Public companion functions

Saver

fun Saver(confirmStateChange: (DrawerValue) -> Boolean): Saver<DrawerStateDrawerValue>

The default Saver implementation for DrawerState.

Public constructors

DrawerState

DrawerState(
    initialValue: DrawerValue,
    confirmStateChange: (DrawerValue) -> Boolean = { true }
)
Parameters
initialValue: DrawerValue

The initial value of the state.

confirmStateChange: (DrawerValue) -> Boolean = { true }

Optional callback invoked to confirm or veto a pending state change.

Public functions

animateTo

@ExperimentalMaterialApi
suspend fun animateTo(targetValue: DrawerValue, anim: AnimationSpec<Float>): Unit

Set the state of the drawer with specific animation

Parameters
targetValue: DrawerValue

The new value to animate to.

anim: AnimationSpec<Float>

Set the state of the drawer with specific animation

close

suspend fun close(): Unit

Close the drawer with animation and suspend until it if fully closed or animation has been cancelled. This method will throw CancellationException if the animation is interrupted

Returns
Unit

the reason the close animation ended

open

suspend fun open(): Unit

Open the drawer with animation and suspend until it if fully opened or animation has been cancelled. This method will throw CancellationException if the animation is interrupted

Returns
Unit

the reason the open animation ended

snapTo

suspend fun snapTo(targetValue: DrawerValue): Unit

Set the state without any animation and suspend until it's set

Parameters
targetValue: DrawerValue

The new target value

Public properties

currentValue

val currentValueDrawerValue

The current value of the state.

If no swipe or animation is in progress, this corresponds to the start the drawer currently in. If a swipe or an animation is in progress, this corresponds the state drawer was in before the swipe or animation started.

isAnimationRunning

val isAnimationRunningBoolean

Whether the state is currently animating.

isClosed

val isClosedBoolean

Whether the drawer is closed.

isOpen

val isOpenBoolean

Whether the drawer is open.

offset

@ExperimentalMaterialApi
val offsetFloat

The current position (in pixels) of the drawer sheet, or Float.NaN before the offset is initialized.

See also
offset

for more information.

targetValue

@ExperimentalMaterialApi
val targetValueDrawerValue

The target value of the drawer state.

If a swipe is in progress, this is the value that the Drawer would animate to if the swipe finishes. If an animation is running, this is the target value of that animation. Finally, if no swipe or animation is in progress, this is the same as the currentValue.