I have a FlatList, and each item inside the FlatList is wrapped with Swipeable from react-native-gesture-handler/Swipeable. It appears as if Swipeable cancels the gestures, and doesn't allow the FlatList to scroll if my finger is on a Swipeable element. Is there any way around it? So far I haven't been able to make them both work together properly.
EDIT
Thanks for the answers, turns out that the problem was that the entire view was wrapped inside a DismissableKeyboard component. I removed it, and now everything is working as it should.