kkemple/react-native-sideswipe

Cannot dismiss keyboard using Keyboard.dismiss() as when keyboard is up, SideSwipe hangs on to the touches!

cyphire opened this issue · 0 comments

Added keyboardShouldPersistTaps={'always'} under <AnimatedFlatlist on line 119 of carousel fixes issue.

Basically, ScrollViews have a default behaviour where any touches are, of course, sent back to the ScrollView. Adding the above fixes the issue where any touches to update anything inside the SideSwipes children are first consumed to remove the keyboard. The above fixes this!.