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 PMAdam Powell
04/20/2022, 1:44 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 interactionAdam Powell
04/20/2022, 1:44 PMmatvei
04/20/2022, 3:15 PMRafal
04/20/2022, 3:16 PMRafal
04/20/2022, 7:29 PMRecyclerView so it seemed to be working out of the box, applying same code to the ComposeView solves the issue