react-native-autocomplete-dropdown
react-native-autocomplete-dropdown copied to clipboard
Dropdown is not opening in iOS devices at all
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
Same here. Works on iOS emulator but not on device.
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(); } ...