答案 0 :(得分:1)
您可以使用https://facebook.github.io/react-native/docs/gesture-responder-system进行此操作
或使用https://github.com/glepur/react-native-swipe-gestures的简单方法。
我实际上会使用模块react-native-swipe-gestures
来提高效率和速度。
答案 1 :(得分:1)
我认为您正在寻找this library
安装:
npm install react-native-swipe-up-down --save
基本用法
import SwipeUpDown from 'react-native-swipe-up-down';
<SwipeUpDown
itemMini={<ItemMini />} // Pass props component when collapsed
itemFull={<ItemFull />} // Pass props component when show full
onShowMini={() => console.log('mini')}
onShowFull={() => console.log('full')}
onMoveDown={() => console.log('down')}
onMoveUp={() => console.log('up')}
disablePressToShow={false} // Press item mini to show full
style={{ backgroundColor: 'green' }} // style for swipe
/>
输出: this