I encountered an issue while using `ModalBottomShe...
# compose
c
I encountered an issue while using
ModalBottomSheet
from Material3. I want to disable the drag behavior, which can be done by setting
Copy code
confirmValueChange = {
   false
}
However, if the content inside the sheet includes scrollable components, the drag behavior becomes active again. How can I disable drag completely while still allowing the content inside to be scrollable?
🥲 1