Open
Description
I have a ScrollView with keyboardShouldPersistTaps
set to never
. If I put a TouchableWithoutFeedback
from react-native and a TextInput
in this view tapping the TouchableWithoutFeedback
does not trigger its onPress
and only blurs the TextInput
. If I however replace the TouchableWithoutFeedback
with a BaseButton
from this package tapping the button both blurs the view and activates the onPress
on BaseButton
.