Last updated:
0 purchases
flutter google places
flutter_google_places #
Google places autocomplete widgets for flutter.
Getting Started #
For help getting started with Flutter, view our online documentation.
# pubspec.yaml
dependencies:
flutter:
sdk: flutter
flutter_google_places: <last-version>
copied to clipboard
const kGoogleApiKey = "API_KEY";
Prediction p = await PlacesAutocomplete.show(
context: context,
apiKey: kGoogleApiKey,
mode: Mode.overlay, // Mode.fullscreen
language: "fr",
components: [new Component(Component.country, "fr")]);
copied to clipboard
The library use google_maps_webservice library which directly refer to the official documentation for google maps web service.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.