I know that a normal bottom sheet can be setup like this
rememberModalBottomSheetState(
initialValue = ModalBottomSheetValue.Hidden,
confirmStateChange = { it != ModalBottomSheetValue.HalfExpanded },
)
So that it will never be half expanded. But what if I want to do the same in Accompanist navigation with bottomsheets?