Michael Dawson

Results 5 comments of Michael Dawson

Hey @vitorizkiimanda, I'm not a contributor to this library but I can let you know that your pull request can't be considered while it includes all of these unrelated changes,...

I'm having the same issue, the suggested "react-native.config.js" additions have no effect for me (running expo@~46.0.16)

Heads up, I've patched the library locally with this change: ``` diff --git a/react-native.config.js b/react-native.config.js index fe49ca64f71a5109b8dc6cdbb3f806e889c0e8e1..e9969e402a036334cafa43df2a89048c009ea90d 100644 --- a/react-native.config.js +++ b/react-native.config.js @@ -2,7 +2,8 @@ module.exports = { dependency:...

What about your firestore rules? This in your firestore.rules file would whitelist all requests (not suitable for production): ``` match /{document=**} { allow create, read, update, delete; } ```

This is also an issue for us. We need to run longPressAndDrag twice in the test, which can cause test errors related to visibility of the pressable item if a...