Can we disable dragging of the ModalBottomSheet wh...
# compose
c
Can we disable dragging of the ModalBottomSheet while still allowing scrolling of the content inside? How can this be done?
d
Maybe you can intercept scroll events so that they dont reach the bottom sheet.
n
use
sheetGestureEnabled = false
c
sheetGestureEnabled
only use
BottomSheetScaffold
right ?, but I need to use
ModalBottomSheet
n
c
In the version I’m using, there is no parameter
sheetGesturesEnabled
. I’m not sure which version you referred to, so I can check against the one I have. I’m currently using version 1.3.1.
s
Since the code is there, you can either go to the change logs of each version and try to find where it was added, or just bump it until it starts appearing.
144 Views