Matteo Mazzarolo
Matteo Mazzarolo
Hi @quachsimon ! Thank you for reporting the issue 👍 If you have some time could you check if removing `return Math.abs(gestureState.dx) >= 4 || Math.abs(gestureState.dy) >= 4;` fixes your...
@cjroth thank you for the feedback. That check is needed to make the modal content respond correctly to the swipes. Are you using supplying the `swipeDirection` to the modal? 🤔...
@cjroth got it, at least it doesn't seem to be a bug then. To make it work correctly both with a nested ScrollView and with a simple View we might...
To add a bit more context, the following check: ```js return Math.abs(gestureState.dx) >= 4 || Math.abs(gestureState.dy) >= 4; ``` Was added to make sure that when you press on a...
@cjroth 🤔 thanks for checking. Did you try with a few buttons in a simple View (not ScrollView) on a real device? If I recall correctly before the PR was...
Hey! @cjroth has been published on [`v7.1.0-beta.1`](https://github.com/react-native-community/react-native-modal/releases/tag/v7.1.0-beta.1), willing to give it a shot?
@chohonest mind creating a small repo to reproduce the issue?
@chohonest yeah, it looks like the fix was not enough :/
🤔 you mean by pressing on the white padding or even on the content?
Seems to be more of an android layout issue. Mind creating a simple repo for reproducing it? Thank you!