react-native
Picker
component doesn't seem like providing multiselect
option https://facebook.github.io/react-native/docs/picker.html#enabled
But, I have com across some libraries which provides multiselect
option like,
https://github.com/toystars/react-native-multiple-select
https://www.npmjs.com/package/react-native-multiple-select-list
But is there any way to select multiple values without going for package?
npm i
, copy package to your own folder ex:./src/myfolder/react-native-multiple-select-list
then you canimport MultiPicker from './src/myfolder/react-native-multiple-select-list'
from there. – Behoove