I’m using https://github.com/JoeRoddy/react-native-tag-autocomplete and ran in to the issue where I have it inside TouchableWithoutFeedback component with onPress={Keyboard.dismiss}. The issue is that the tags are no longer touchable when wrapped inside TouchableWithoutFeedback.
<TouchableWithoutFeedback onPress={() => Keyboard.dismiss()}>
<View>
<AutoTags />
</View>
</TouchableWithoutFeedback>
Now I don’t know if I should just wrap every other component on my view with TouchableWithoutFeedback and let Autotags be as it doesn’t seem as a good solution.
You’ll need to split it up so they aren’t nested – maybe something like this would help..
I haven’t tested it out so the styles might be a bit off, but it should give you an idea on how it can be fixed..
Let me know if it works for you.