I am trying to create a drop down menu using Expo and React-native-picker.
<TouchableOpacity style={styles.pickerContainer}>
<Picker
selectedValue={selectedProduct}
style={styles.pickerStyle}
itemStyle={styles.pickerItemStyle}
onValueChange={(value, key) => {
setSelectedProduct(value)
}}
>
{getProductOptions(products)}
</Picker>
</TouchableOpacity>
When I run expo start
the drop down menu appears just as I want. However, when I open it in iOS simulator, I get a scroll wheel. Is there a some prop that needs to be changed to get the drop down menu in iOS?