Hi,
Are we missing the implementation for "onblur"? When search results are displayed, then when I unfocus the search text box, the search results are still being displayed. I suppose we should make it disappear when the search textbox is not being focused?
Thanks and regards.
same issue :
You can use the textInputProps prop.
Example:
<GooglePlacesAutocomplete
textInputProps={{
onFocus : () => console.log('focused'),
onBlur : () => console.log('blurred')
}}
/>
Most helpful comment
You can use the
textInputPropsprop.Example: