react-native-dropdown-autocomplete
react-native-dropdown-autocomplete copied to clipboard
Autocomplete input with dropdown modal component for React native. Useful for pages with multiple autocomplete's.
According to the docs, it's possible to pass the data directly, without using the ``fetchData`` prop  But the ``AutocompleteProps`` interface doesn't have the ``data`` prop type  
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:  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={() =>{...