onValueChange | function | Callback which returns value, index | Y | Both |
items | array | The items for the component to render - Each item should be in the following format:
{label: 'Orange', value: 'orange', key: 'orange', color: 'orange'} - The label and the value are required - The key and color are optional - The key will be set to the label if not included - The value can be any data type | Y | Both |
placeholder | object | - An override for the default placeholder object with a label of Select an item... and a value of null - An empty object can be used if you'd like to disable the placeholder entirely | N | Both |
disabled | boolean | Disables interaction with the component | N | Both |
value | any | Will attempt to locate a matching item from the items array by checking each item's value property. If found, it will update the component to show that item as selected. If the value is not found, it will default to the first item. | N | Both |
itemKey | string, number | Will attempt to locate a matching item from the items array by checking each item's key property. If found, it will update the component to show that item as selected. If the key is not found, it will attempt to find a matching item by value as above. | N | Both |
style | object | Style overrides for most parts of the component. More details below. | N | Both |
hideIcon | boolean | Hides the floating downward arrow on the right side of the input box | N | Both |
pickerProps | object | Additional props to pass to the Picker (some props are used in core functionality so use this carefully) | N | Both |
placeholderTextColor | color | Overrides the default placeholder color shown | N | iOS |
useNativeAndroidPickerStyle | boolean | DEFAULTS TO TRUE. The component defaults to using the native React Native Picker in it's un-selected state. Setting this flag to false will mimic the default iOS presentation where a tappable TextInput is displayed. See more in the styling section. | N | Android |
hideDoneBar | boolean | Hides the bar with tabbing arrows and Done link to exit the modal. While this is typical on select elements on the web, the interface guidelines does not include it. | N | iOS |
onUpArrow / onDownArrow | function | Presence enables the corresponding arrow - Closes the picker - Calls the callback provided | N | iOS |
onDonePress | function | Callback when the 'Done' button is pressed | N | iOS |
onOpen / onClose | function | Callback triggered right before the opening or closing of the picker | N | iOS |
modalProps | object | Additional props to pass to the Modal (some props are used in core functionality so use this carefully) | N | iOS |
textInputProps | object | Additional props to pass to the TextInput (some props are used in core functionality so use this carefully) | N | iOS |