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

Add custom searching logic #104

Open zbessette opened 7 months ago

zbessette commented 7 months ago

Added an option to pass a custom search method.

I have a use case where I am trying to search a large dataset, but I want to limit the query to 25 results at a time. I'm passing a custom search function into this component so that I can debounce the text change then fire a query to get the updated results as opposed to trying to query the entire dataset and manipulating it from the frontend