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

autofocus on load #47

Open iamhaaamed opened 4 years ago

iamhaaamed commented 4 years ago

is it possible to auto focus autocomplete input on load?

Myrfion commented 2 years ago

Hello, here is simple solution which helped me to make it work const AutoFocusTextInput: React.ComponentType<any> = props => <TextInput autoFocus {...props} /> <AutocompleteDropdown InputComponent={AutoFocusTextInput} ... />