srivastavaanurag79 / react-native-paper-select

Dropdown using React Native Paper TextInput, Checkbox and Dialog
https://anurag-srivastava.gitbook.io/react-native-paper-select/
MIT License
48 stars 15 forks source link

fix: first click on android doesn't work #10

Closed Bo7mid3 closed 1 year ago

Bo7mid3 commented 1 year ago

The problem was when the InputText gets clicked to open the modal it goes into focus mode. When the user tap anywhere on the screen just after the modal opens the default behavior is to unfocus the TextInput (under the modal) without capturing the tap. with keyboardShouldPersistTaps="handled" the tap is captured if a pressable (or touchable) element is tapped on.