Laurence
Laurence
Try to implement it like this. There shouldn't be the need to introduce a new prop. ``` function SomeComponent() { const inputEl = useRef(null); return ( } /> ) }...
Resolved within #243. Now you can set the `ref` prop in the autocomplete to get a reference to the text input.
I guess this is fixed with #238
Not quite sure why this is needed. I would rather add a property to the autocomplete to pass in custom result list render function instead of adding a hard dependency...
Applying styles to the result list can by done through `flatListProps.styles`: ``` movie.episodeId, style: styles.customList, // ( setQuery(item.title)}> {item.title} ), }} /> ```
This should be fixed with in [v5.5.6](https://github.com/byteburgers/react-native-autocomplete-input/releases/tag/v5.5.6)