I have a BottomSheetScaffold
inside my android app that looks like the following:
BottomSheetScaffold(
sheetGesturesEnabled = false,
sheetContent = { MyContent() },
scaffoldState = bottomSheetScaffoldState,
) {
..
}
With the sheetGesturesEnabled
set to false
, the sheet should not be swipeable. However, if MyContent()
contains a scrollable component like LazyColumn
, the swipe to close gesture can still be executed on the modal bottom sheet.
How is that possible? Is that a known bug? Is there any fix to this?