Rafal
04/20/2022, 12:23 PMRecyclerView
in my NavigationView
. When I use the LazyRow
or Row(Modifier.horizontalScroll())
the touch events are not intercepted properly and instead of scrolling the row, the NavigationView
is closing. Is there any way to make the ComposeView
intercept touch events?Adam Powell
04/20/2022, 1:42 PMrequestDisallowInterceptTouchEvent
from the parent. It's not that your child view isn't intercepting, parents intercept. You want to prevent the parent container from intercepting the touch interactionmatvei
04/20/2022, 3:15 PMRafal
04/20/2022, 3:16 PMRecyclerView
so it seemed to be working out of the box, applying same code to the ComposeView
solves the issue