I have a vertically scrollable composable within a bottom sheet (coordinator layout based), but the bottom sheet seems to intercept the touch events and not letting the owned composable scroll properly.
• Calling
requestDisallowInterceptTouchEvent
on ComposeView which does not really work, it used to work all fine with non compose view that this new compose view replacing
• using
pointerInteropFilter
when returning
true
from onTouchEvent, seems to stop bottom sheet from getting events but then the child scrollable composable also is not scrollable at all
Is there a reliable way to achieve child scrollable composable within a bottom sheet fragment?