I'm facing a problem with Android 12 overscroll configuration and nested scroll. I'm using
nestedScroll
to detect whether a child
ScrollState
reaches the top, so I can forward the deltas to the parent's
DraggableState
(see video). However, the android 12 stretch overscroll effect seems to use the available deltas (which is expected to perform the animation), but it also consumes them, and it causes my
nestedScroll
onPreScroll
available
parameter to be very close to zero.
How can I tell the overscroll effect to not the deltas?
(the first clip is how it looks like without the overscroll effect)