maxkordiyak / react-native-dropdown-autocomplete

Autocomplete input with dropdown modal component for React native. Useful for pages with multiple autocomplete's.
MIT License
100 stars 51 forks source link

Can't tap on dropdown items on Android #28

Closed PaitoAnderson closed 4 years ago

PaitoAnderson commented 4 years ago

On iOS this works fine, but on Android the keyboard just disappears without selecting the item.

Likely something with keyboardShouldPersistTaps isn't working right on Android.

PaitoAnderson commented 4 years ago

Resolved, I just used this for the parent view.

<ScrollView keyboardShouldPersistTaps={(this.state.autocompleteDropdownOpen || Platform.OS === 'android') ? 'always' : 'never'}>{page content here}</ScrollView>