react-native-dropdown-autocomplete icon indicating copy to clipboard operation
react-native-dropdown-autocomplete copied to clipboard

Autocomplete input with dropdown modal component for React native. Useful for pages with multiple autocomplete's.

Results 31 react-native-dropdown-autocomplete issues
Sort by recently updated
recently updated
newest added

According to the docs, it's possible to pass the data directly, without using the ``fetchData`` prop ![image](https://user-images.githubusercontent.com/48022589/93020390-23fdad00-f5b3-11ea-9a32-39c802f78a1b.png) But the ``AutocompleteProps`` interface doesn't have the ``data`` prop type ![image](https://user-images.githubusercontent.com/48022589/93020412-41327b80-f5b3-11ea-9f67-39af9f554ebd.png) ![image](https://user-images.githubusercontent.com/48022589/93020413-47c0f300-f5b3-11ea-9f51-bbe1fdc13f54.png)

I need to update the initial data that i set in the autocomplete. The idea is to have a dynamic data for my autocomplete, it is this posible? There are...

the component takes in data url how can we use it with a graphql api like we would want to call a query function and use its loading state for...

Hello, I'm a little lost with onDropDownClose The purpose of this screen is to allow me to choose a product in an autocomplete input, when I have chosen it, I...

Updating local state through onChangeText, clears the input anytime I type. ``` const [item, setItem] = useState("") setItem(text)} // console.log(item, id)} data={items} minimumCharactersCount={2} valueExtractor={item => item} /> ```

Hi! I am using your package for the next field attached capture: ![IMG-20191216-WA0018](https://user-images.githubusercontent.com/47191848/70934447-db21c380-2035-11ea-8a09-374f9dd5ffe6.jpg) I think I have a conflict with the scrolls, because inside that search field I have a...

I see a blank page in expo 39 (react-native 0.63) due to undefined component warning here https://github.com/maxkordiyak/react-native-dropdown-autocomplete/blob/ab48f1ecdda30239020d3a5b9f627317e25a5c71/components/withKeyboardAwareScrollView/index.js#L70 All works well when i force react-native-keyboard-aware-scroll-view dependency to 0.9.2+ Thanks!

This PR implements the initial value update when the data is asynchronous and also provides an ``onSubmitEditing`` event handler which is very important to handle focus on forms

hello, i am implement this library in my project and call my project api and get the data and set data in state and update the state but the problem...

Hi I am having the issue with keyboard on android. Blank keyboard is showing. ```` {autocompletes.map(() => ( scrollToInput(ev)} handleSelectItem={(item, id) => this.handleSelectItem(item, id)} onDropdownClose={() =>{ onDropdownClose() }} onDropdownShow={() =>{...