rememberBackdropScaffoldState
Composable Function
Common
@Composable
fun rememberBackdropScaffoldState(
initialValue: BackdropValue,
animationSpec: AnimationSpec<Float> = BackdropScaffoldDefaults.AnimationSpec,
confirmStateChange: (BackdropValue) -> Boolean = { true },
snackbarHostState: SnackbarHostState = remember { SnackbarHostState() },
): BackdropScaffoldState
Create and remember
a BackdropScaffoldState
.
Parameters
initialValue | The initial value of the state. |
animationSpec | The default animation that will be used to animate to a new state. |
confirmStateChange | Optional callback invoked to confirm or veto a pending state change. |
snackbarHostState | The SnackbarHostState used to show snackbars inside the scaffold. |