How I disable ModalBottomSheet swipe down to dismi...
# compose-android
y
How I disable ModalBottomSheet swipe down to dismiss funtionality? I don't want to close if user swipe down bottomsheet?
a
In
BottomSheetScaffold
there is a method
sheetSwipeEnabled = true|false
here you can disable to swipe to dismiss.
y
I'm using ModalBottomSheet, what is the recommended way for bottom sheets in Android projects?
a
Ahh.. it seems this is only possible with the standardBottomSheet and not with the modal bottom sheet. Can you use the standard bottom sheet and apply the content scrim yourself?
y
No but I think, i have to try with standardBottomSheet
👌 1
a
Or you can also see if
SheetState(confirmValueChange: (SheetValue) -> Boolean)
is serving your purpose or not
427 Views