why
10/22/2023, 1:53 PMHidden
to PartiallyExpanded
before touching/doing anything? Bug? (Material3 alpha10)
val scaffoldState1 = rememberBottomSheetScaffoldState(
bottomSheetState = rememberStandardBottomSheetState(
initialValue = Hidden,
skipHiddenState = false
)
)
println("why the state changing? ${scaffoldState1.bottomSheetState.currentValue}")
BottomSheetScaffold(
scaffoldState = scaffoldState1,
sheetContent = {}
) {}
Logcat:
System.out app.debug I why the state changing? Hidden
System.out app.debug I why the state changing? PartiallyExpanded