Style individual Picker.Item in React Native Style individual Picker.Item in React Native reactjs reactjs

Style individual Picker.Item in React Native


The only props that you can use for the Picker.Item are mentioned here in Picker.ios.js and PickerAndroid.android.js

static propTypes = {    value: PropTypes.any, // string or integer basically    label: PropTypes.string,    color: PropTypes.string,  };

Therefore you cannot supply any other values to it.