Catch tap in React Native ScrollView while keyboard is up
Looks like I answered my own question; setting keyboardShouldPersistTaps to 'always'
or 'handled'
on a ScrollView will pass taps to the components in that ScrollView even when the keyboard is up.
You need to add the keyboardShouldPersistTaps to 'always' on your list too.
Check out this answer:
https://stackoverflow.com/a/42815548/2887460