react-native-dropdown-picker
react-native-dropdown-picker copied to clipboard
Allow custom user value
Is it possible to allow the users to enter their own value in a searchable dropdown, even if the value they entered is not included in the dropdown's list and then selct it as dropdown's value?
I want this feature as well, did you get any leads regarding this? @voulgarakis
Hi,
I hack it like this:
addCustomItem={true}
and change the placeholder when the user presses the item him entered placeholder={ materials[index].description == '' ? I18n.t('material') : materials[index].description }