Hello, I am using `LazyColumn` inside `HorizontalP...
# compose
x
Hello, I am using
LazyColumn
inside
HorizontalPager
. When
LazyColumn
is scrolled by the user and enters the Fling state after the user's finger leaves the
LazyColumn
, the duration of this Fling is determined by
FlingBehavior
. However, when the Fling is in progress, the user's attempt to swipe horizontally on the
HorizontalPager
is completely blocked. This results in a poor UX experience. Is there any way to solve this? In
ScrollingLogic
,
Offset.singleAxisOffset()
completely discards the value in the other direction. Shouldn't it be that scrolling in one direction blocks the other direction, while during Fling, the other direction should be allowed?
In Android View, Pager + RecyclerView works correctly, it can immediately respond to the user's gesture of switching the Pager