toystars / react-native-multiple-select

Simple multi-select component for react-native
MIT License
569 stars 317 forks source link

Need only list without dropdown #170

Open appCreator151 opened 3 years ago

appCreator151 commented 3 years ago

How can I display the only a list with search functionality. I want to remove dropdown functionality. Is it possible ?

vedatbozkurt commented 3 years ago

edit node_modules/react-native-multiple-select/lib/react-native-multi-select.js like below.(set selector true)

constructor(props) { super(props); this.state = { selector: true, searchTerm: '' }; }