Package-level declarations
Types
Link copied to clipboard
class BottomSheetStandardIcon(val accessibilityPainter: AccessibilityPainter, val onClick: () -> Unit)
Wrapper for an icon for the BottomSheetStandard.
Link copied to clipboard
class BottomSheetStandardState(initialValue: BottomSheetStandardStateValue, density: Density, val hasHiddenState: Boolean)
State of BottomSheetStandard composable.
Link copied to clipboard
Possible states of BottomSheetStandardState.
Functions
Link copied to clipboard
fun BottomSheetStandard(title: String, modifier: Modifier = Modifier, sheetState: BottomSheetStandardState = rememberBottomSheetStandardState(), minimizedHeight: Dp = 256.dp, hasOpacityBlanket: Boolean = true, leftContent: @Composable () -> Unit? = null, bottomSheetStandardIcon1: BottomSheetStandardIcon? = null, bottomSheetStandardIcon2: BottomSheetStandardIcon? = null, sheetContent: @Composable () -> Unit, content: @Composable () -> Unit)
User interface element that slides up from the bottom of the screen to present additional content, actions, or options without completely obstructing the current view.
Link copied to clipboard
fun rememberBottomSheetStandardState(initialValue: BottomSheetStandardStateValue = Minimized, hasHiddenState: Boolean = true): BottomSheetStandardState
Create a BottomSheetStandardState and remember it.