react-native-google-places-autocomplete icon indicating copy to clipboard operation
react-native-google-places-autocomplete copied to clipboard

Customizable Google Places autocomplete component for iOS and Android React-Native apps

Results 124 react-native-google-places-autocomplete issues
Sort by recently updated
recently updated
newest added

Hello, I would like to kindly request to become a maintainer of this repo. I would like to fix some changes regarding the onChangeText handler and more. Thank you, Adam

enhancement

I want to be able to programatically specify a new text value to put into the input. This is currently possible using a `ref` with `ref.current.setAddressText('my new text')`. However, I...

# Describe the bug Autocomplete not working when strict bounds set to true in iOS. When I remove it, it works. I'm using strict bounds for bounding the selected location....

bug

Wouldn't mind helping out have extensive knowledge of google places autocomplete and react-native.

enhancement

# Describe the problem I want to know 2 things: 1. Does this package manage session IDs(for low cost) automatically? 2. This package makes an XHR request, which can be...

question

{ //console.log(data, details); console.log(data.description) BirthAnnouncementText(data.description, "Location") }} onNotFound={() => console.log('no results')} listEmptyComponent={() => ( No results were found )} query={{ key: 'Google API key ', language: 'en', }} styles={{ textInput:...

question

# My problem I need save postal zip code in state inside my component, but: # Code ```jsx { const code = details?.address_components.find( (addressComponent) => addressComponent.types.includes('postal_code'), )?.short_name; setZipCode(code); }} fetchDetails={true}...

question

A platform dependent version of the TouchableHighlight. Touchables don't usually work well with components like Gorhom's Bottom Sheet, or just don't work properly at all depending on the OS, so...

…with useRef() AND focusing the input, the query is triggered again through _handleChangeText(stateText)

I'm working on a uni project for my final year. I've studied multiple ways of implementing this library and I finally managed to use it. However, it appears to me...

question