look this video of current scrolling behavior. i want, as soon as finger is lifted from screen, to disable scrolling.
Edit: the video shows a user scrolling through a list. When the finger is lifted from the screen, you see the scrolling continues up or down for a short time.
Advertisement
Answer
I think what you need is:
JavaScript
x
4
1
<ScrollView
2
bounces={false}
3
/>
4
This way when you scroll finished, the scroll animation will not continue and immediately stopped.