Bottom sheet: initial state must be Hidden else there is no animation when opening the bottom sheet.

This commit is contained in:
Benoit Marty
2026-06-19 09:19:04 +02:00
parent 33e2f72792
commit 82c6167441
17 changed files with 17 additions and 17 deletions
@@ -106,7 +106,7 @@ fun ShareLocationView(
val scaffoldState = rememberBottomSheetScaffoldState(
bottomSheetState = rememberBottomSheetState(
initialValue = SheetValue.Expanded,
initialValue = SheetValue.Hidden,
)
)
val cameraState = rememberCameraState(firstPosition = MapDefaults.defaultCameraPosition)
@@ -93,7 +93,7 @@ fun ShowLocationView(
val scaffoldState = rememberBottomSheetScaffoldState(
bottomSheetState = rememberBottomSheetState(
initialValue = SheetValue.Expanded,
initialValue = SheetValue.Hidden,
)
)
LaunchedEffect(state.isSheetDraggable) {