BottomSheet
Deprecated (with error)
This BottomSheet component is based on Material2. Migrate to Sheet based on Material3.Have a look at the components sample, net.ikea.skapa.ui.samples.SheetM3Sample
Replace with
Sheet(onDismiss = onDismiss, modifier = modifier, sheetState = sheetState /* TODO */, modalHeader = modalHeaderParams /* TODO */, sheetFooterParams = sheetFooterParams, dividers = dividers, background = background, contentHorizontalPadding = contentHorizontalPadding /* TODO */, content = sheetContent)Sheet is a modal window that dims and disables the parent view allowing for a short, focused task or providing additional information before returning to the main screen. They are an alternative to inline menus and simple dialogs, providing additional room for content, iconography, and actions.
Parameters
The content of the bottom sheet.
Optional Modifier for the entire component.
SheetState The state of the bottom sheet.
ModalHeaderParams if provided, will add a fixed ModalHeader component on top of the sheet layout
ModalsActionFooterParams if provided, will add a fixed ModalsActionFooter at the bottom of the sheet layout
Top and Bottom dividers to highlight content division with Header and Footer
The padding applied to the sheet content.
The background color of the sheet.
optional. Sets a callback for when this Sheet dismisses itself.