Posts

Showing posts with the label dropdown

React Native Search Dropdown

I'm working on React native app. I'm looking for a searchable dropdown which I need to implement in many places. Below see below video for reference: Sample Video I have implemented below third parties but they are not same as I need: https://www.npmjs.com/package/react-native-searchable-dropdown https://www.npmjs.com/package/react-native-searchable-selectbox https://github.com/toystars/react-native-multiple-select I tried implementing something similar a while ago and at the time I dropped the idea of having a drop down as it was inconsistent on both platforms & I could not find a perfect solution. I cannot see your video but I think I know where you're going with this. Here is my advice: I would create a separate screen that opens on the tap on this component that would be a 'dropdown', and in there create a searchable/filtrable list. You could try doing that using this: https://www.npmjs.com/package/searchable-flatlist, or create your...