ms
07/25/2021, 4:17 PMModalBottomSheetLayout, is there any way to disable isHalfExpandedEnabled 'cause I want my bottom sheet to expand to it's content heightms
07/25/2021, 4:18 PMisHalfExpandedEnabled is set internally if the anchors has HalfExpandedms
07/25/2021, 4:28 PMdivid3d
07/26/2021, 10:41 AMconfirmStateChange like this:
val sheetState = rememberModalBottomSheetState(
initialValue = ModalBottomSheetValue.Hidden,
confirmStateChange = { stateValue -> stateValue != ModalBottomSheetValue.HalfExpanded }
)