Is there a way to disable "swipe to go back" for modals?
In the app I'm currently working on we open a WebView in a modal and when trying to scroll up in the WebView the modal captures the gesture and starts the back-animation. Like this:

Possibly related to this issue https://github.com/facebook/react-native/issues/7450
Have you tried panHandlers={null} on the Scene?
@cridenour Thank you! 馃憤
@cridenour Thank you
Have you tried
panHandlers={null}on the Scene?
@cridenour, yes that helps but is there a way to programmatically enable/disable it dependent on the modal visibility. i.e. keep panHandlers when modal is closed and set panHandlers to null when modal is open?
Most helpful comment
Have you tried
panHandlers={null}on the Scene?