React-native-google-places-autocomplete: Onblur implementation missing?

Created on 8 May 2017  路  2Comments  路  Source: FaridSafi/react-native-google-places-autocomplete

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.

Most helpful comment

You can use the textInputProps prop.
Example:

<GooglePlacesAutocomplete
  textInputProps={{
    onFocus : () => console.log('focused'),
    onBlur  : () => console.log('blurred')
  }} 
/>

All 2 comments

same issue :

You can use the textInputProps prop.
Example:

<GooglePlacesAutocomplete
  textInputProps={{
    onFocus : () => console.log('focused'),
    onBlur  : () => console.log('blurred')
  }} 
/>
Was this page helpful?
0 / 5 - 0 ratings

Related issues

diegothucao picture diegothucao  路  3Comments

sohel-tech picture sohel-tech  路  3Comments

quandevelopment picture quandevelopment  路  4Comments

yashwanth15 picture yashwanth15  路  3Comments

biks152207 picture biks152207  路  4Comments