Closed camel113 closed 4 years ago
When <Modal/> wraps <TouchableWithoutFeedback onPress={...}/>, the onPress prop "disable" the modal's swipe gesture. This PR fix it and allow modal gesture to work along with onPress.
<Modal/>
<TouchableWithoutFeedback onPress={...}/>
onPress
I've closed this because I spotted this only fix the issue on simulator and not on real devices.
When
<Modal/>
wraps<TouchableWithoutFeedback onPress={...}/>
, theonPress
prop "disable" the modal's swipe gesture. This PR fix it and allow modal gesture to work along withonPress
.