By default, `ModalBottomSheetLayout` is able to sh...
# compose
j
By default,
ModalBottomSheetLayout
is able to show only the top half of the sheet even if the actual sheet content is the full size of the screen. Is there a way to disable this "half" state of the bottom sheet and force it to show the entire content?
l
Copy code
.animateTo(                     ModalBottomSheetValue.Expanded)
c
I think you want the
isSkipHalfExpanded
parameter
j
The animateTo API was removed in favor of the show/hide APIs recently. As Chris says, use skipHalfExpanded to indicate whether you want to include a half expanded state or not :)