I need to show my bottomsheet first in collapsed state. And on swipping bottomsheet up, it should first fix in half height of screen first. Again on swipping up , it should expand to max height of screen. Same during collapsing. First from max height to half height, then to peek height(the height of bottomsheet which will be visible in collapsed state). Is there any way to achieve it using BottomSheetScaffold?
How to set half expanded height for bottomsheet using BottomSheetScaffold in compose?
3.4k Views Asked by Heleena Joy At
2
There are 2 best solutions below
2

Found the way to fix issue about
While collapsing my bottomsheet, its bottom end moving up
Based on accepted answer made some changes, and it seems to solve an issue
val bottomSheetSt = rememberStandardBottomSheetState(
skipHiddenState = true,
initialValue = SheetValue.PartiallyExpanded
)
val scaffoldState = rememberBottomSheetScaffoldState(bottomSheetSt)
var peekHeight: Int by remember { mutableStateOf(0) }
BottomSheetScaffold(
scaffoldState = scaffoldState,
sheetContent = {
val scope = rememberCoroutineScope()
BottomSheetGestureWrapper(
onExpandTypeChanged = {
scope.launch {
peekHeight = when (it) {
ExpandedType.COLLAPSED -> 70
ExpandedType.FULL -> screenHeight - 46
ExpandedType.HALF -> screenHeight / 2
}
bottomSheetSt.partialExpand() // Smooth animation to desired height
}
}
) {
// Bottom Sheet content
}
},
sheetPeekHeight = peekHeight.dp, // <------- Important
modifier = Modifier.fillMaxSize(),
sheetShadowElevation = 0.dp,
sheetContainerColor = Color.Transparent,
sheetContentColor = Color.Transparent,
sheetDragHandle = null,
) {
// Scaffold content
}
And also moved draggable staff to separate file
@Composable
fun BottomSheetGestureWrapper(
modifier: Modifier = Modifier,
onExpandTypeChanged: (ExpandedType) -> Unit,
content: @Composable () -> Unit
) {
var expandedType by remember {
mutableStateOf(ExpandedType.COLLAPSED)
}
var isUpdated = false
LaunchedEffect(key1 = expandedType) {
onExpandTypeChanged(expandedType)
}
Box(
modifier
.fillMaxSize()
.pointerInput(Unit) {
detectVerticalDragGestures(
onVerticalDrag = { change, dragAmount ->
change.consume()
if (!isUpdated) {
expandedType = when {
dragAmount < 0 && expandedType == ExpandedType.COLLAPSED -> {
ExpandedType.HALF
}
dragAmount < 0 && expandedType == ExpandedType.HALF -> {
ExpandedType.FULL
}
dragAmount > 0 && expandedType == ExpandedType.FULL -> {
ExpandedType.HALF
}
dragAmount > 0 && expandedType == ExpandedType.HALF -> {
ExpandedType.COLLAPSED
}
else -> {
expandedType
}
}
isUpdated = true
}
},
onDragEnd = {
isUpdated = false
}
)
}
.background(Color.White)
) {
content()
}
}
I started write that solution for you. You can beautify it