maxkordiyak / react-native-dropdown-autocomplete

Autocomplete input with dropdown modal component for React native. Useful for pages with multiple autocomplete's.
MIT License
100 stars 51 forks source link

scrollToInput is not a function #19

Closed pixsolution closed 5 years ago

pixsolution commented 5 years ago

Hello,

I am using your package, but it is giving me the following error when I clicked on the input field attached capture: Captura de Pantalla 2019-08-16 a la(s) 4 52 18 p  m

so the error indicates is by this line of code: Captura de Pantalla 2019-08-16 a la(s) 4 55 47 p  m scrollToInput: Focus on selected field
What other method can I use to write in the input field? because as you can see when I click on that field it gives the error

I appreciate your help regards

PaitoAnderson commented 5 years ago

scrollToInput is a required prop right now, just do something like scrollToInput={ev => {}} to satisfy this error. I'll look at making it a optional property in the future.

pixsolution commented 5 years ago

it work thanks!