Xilin Liao
Xilin Liao
` _onMomentumScrollEnd = () => { this._touching = false; this._dragging = false; this._beginIndicatorDismissAnimation(); this.props.onMomentumScrollEnd && this.props.onMomentumScrollEnd(); };` 按住屏幕不放先往上滑再往下滑,看上去是根本没触发onMomentumScrollEnd,iOS和android均有该问题。
这是RN自身的问题 `import { TouchableOpacity } from 'react-native-gesture-handler'` 用RNGH里的TouchableOpacity替换原有组件,基本可以解决误触的问题
Hi @dangreen I encountered the same issue when I install this repo due to jsPDF in my RN project. It said that `node_modules/canvg/lib/index.es.js` does not exist but I did found...