React Native ios picker is always open
I have two pickers on my screen. Whenever I navigate to the screen in iOS app I find that the pickers are always open and all options are visible. It works perfectly fine in Android where the options are visible only after we click on the picker. Can somebody suggest a solution to fix this in iOS? Use ActionSheet instead of Picker on iOS. https://facebook.github.io/react-native/docs/actionsheetios.html As answered by jevakallio this is the default behaviour on iOS. But this doesn't give a good UX so remove all picker components and replace with ActionSheet. I did and it works great. The reason