Skip to content

Tag: react-native

How to stop swipe in ScrollView?

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. Answer I think what you need is: …

Detect swipe left in React Native

How can I detect a left swipe on the entire screen in React Native? Would it be necessary to use PanResponder or can it be done a little more easy? Answer There is an existing component react-native-swipe-gestures for handling swipe gestures in up, down, left and right direction, see https://github.com/glepur…