ascoders / react-native-image-viewer

🚀 tiny & fast lib for react native image viewer pan and zoom
MIT License
2.44k stars 576 forks source link

无法滑动图片,滑动事件老是触发点击事件 #448

Open mmyhs opened 3 years ago

mmyhs commented 3 years ago

无法滑动图片,滑动事件老是触发点击事件。 目前的我只能把代码改成这样, <Modal visible={modalVisible} transparent={true} onRequestClose={() => setModalVisible(false)}> <ImageViewer imageUrls={listData} onSave={(url) => { console.log('onSave=>', url); }} onClick={(onCancel) => { console.log('onClick=>', onCancel); }} menus={() => null} menuContext={{saveToLocal: '保存图片', cancel: '取消'}} index={index} enableSwipeDown={false} saveToLocalByLongPress={false} /> 改成这样后,图片仅只有预览功能,还是不可以滑动

感觉还不如直接用,<Image source={{uri=""}} />

xinyangmaojian commented 2 years ago

我也遇到这个问题了。 然后发现是开了react native debugger 关掉这个调试工具以后我的就可以滑动了。