react-native-largelist-v3 滑动列表触发onpress事件

解决

设置全局变量listViewDirtyPressEnabled_next控制点击事件

LargeList 用scrollView方法控制

代码

 onMomentumScrollBegin={() => {

            if (_listViewDirtyPressEnabled_next) {

              _listViewDirtyPressEnabled_next = false

            }

          }}

          onMomentumScrollEnd={() => {

            setTimeout(() => {

              if (!_listViewDirtyPressEnabled_next) {

                _listViewDirtyPressEnabled_next = true

              }

            }, 5);

          }}

你可能感兴趣的:(react-native-largelist-v3 滑动列表触发onpress事件)