react-native-google-places-autocomplete
                                
                                 react-native-google-places-autocomplete copied to clipboard
                                
                                    react-native-google-places-autocomplete copied to clipboard
                            
                            
                            
                        How to trigger the list view display each time i focus the text input ?
Describe the problem
I want to trigger the list view display each time i focus the text input (now it's triggered only when input changed)
  <GooglePlacesAutocomplete
    minLength={2}
    query={{
      key: SOME_KEY,
      language: 'en',
      types: 'address',
      components: 'country:us',
    }}
    ref={ref}
    value={value}
    isFocused={isFocus}
    onFocus={onFocused}
    onPress={handleSelection}
    textInputProps={{
      onChangeText: val => {
        setAddressText(val);
        if (val === '') {
          onClear();
        }
      },
    }}
    onFail={error => console.error(error)}
    placeholder='Enter Your home address'
    filterReverseGeocodingByTypes={['postal_code']}
    listViewDisplayed="auto"
    fetchDetails={true}
    styles={inputStyle}
  />