react-native-dropdown-picker icon indicating copy to clipboard operation
react-native-dropdown-picker copied to clipboard

Allow custom user value

Open voulgarakis opened this issue 1 year ago • 2 comments

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?

voulgarakis avatar Oct 11 '23 09:10 voulgarakis

I want this feature as well, did you get any leads regarding this? @voulgarakis

shivardev avatar Nov 12 '23 00:11 shivardev

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 }

voulgarakis avatar Nov 13 '23 08:11 voulgarakis