I've issue to use Picker inside Item

Running well on IOS

But picker not working on Android

When i moves Picker to outside Item, works on IOS and Android. Thanks.
@yovierayz You will need to apply some width to the picker.
Something like this
<Picker style={{ width:(Platform.OS === 'ios') ? undefined : 120 }} >
Let me know if it works
It works after adding width to the picker.
@shivrajkumar ok it's works, tq :)
This needs to be in the docs, right?
This should be in the docs, 100%. @shivrajkumar Would you accept a PR?
I think that it would be better: ... <Picker style={{flex: 1}} ...
Note: Tested only on android
Most helpful comment
@yovierayz You will need to apply some width to the picker.
Something like this
<Picker style={{ width:(Platform.OS === 'ios') ? undefined : 120 }} >Let me know if it works