react-native-autocomplete-dropdown icon indicating copy to clipboard operation
react-native-autocomplete-dropdown copied to clipboard

Dropdown is not opening in iOS devices at all

Open ITDevMohsin opened this issue 3 years ago • 2 comments

Hi,

I have been facing the issue for a very long time but all my attempts toward success are failed. I am unable to open the dropdown on an IOS device. For Android, it's working fine. If there's no solution to the issue, I might need to go for some other plugin. Please have a look. Make sure to test in both iOS and Android. Link: https://snack.expo.dev/72Vq1000k?platform=ios

ITDevMohsin avatar Aug 08 '22 08:08 ITDevMohsin

Same here. Works on iOS emulator but not on device.

kvron avatar Sep 27 '22 15:09 kvron

Same here. I found a way around this for now when using remote dataset.

After make the search use the dropdown controller to close and open the dropdown.

... setLoading(false); if (Platform.OS === 'ios') { dropdownController.current.close(); dropdownController.current.open(); } ...

leogaletti avatar Nov 09 '23 17:11 leogaletti