danish1658 / react-native-dropdown-select-list

☝️ React Native Select List Equivalent to Html's Select with options"
https://www.npmjs.com/package/react-native-dropdown-select-list
MIT License
193 stars 90 forks source link

How to disabled Select? #71

Open David-forero opened 1 year ago

therbta commented 1 year ago

To make an array list show disabled items, simply add a 'disabled' prop and set it to true. Check out this example:

const data = [
 { key: '1', value: 'Mobiles', disabled: true },
 { key: '2', value: 'Appliances' },
 { key: '4', value: 'Computers', disabled: true },
 { key: '5', value: 'Vegetables' },
 ]