Google Places Autocomplete for React Native
This library is a work in progress and currently very much written to suit my needs. I will improve it and make it more useful over time.
npm install react-native-gp-autocomplete
import { GooglePlacesAutocomplete } from 'react-native-gp-autocomplete';
// ...
<View>
<GooglePlacesAutocomplete
apiKey={API_KEY}
requestConfig={{ countries: ['IE'] }}
onPlaceSelected={(place) => {
console.log(place);
}}
/>
</View>;
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT