Uuttssaavv / flutter_google_places_autocomplete

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

flutter_google_places_autocomplete

pub version

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_autocomplete: <last-version>
const kGoogleApiKey = "API_KEY";

Prediction p = await showGooglePlacesAutocomplete(
                          context: context,
                          apiKey: kGoogleApiKey,
                          mode: Mode.overlay, // Mode.fullscreen
                          language: "fr",
                          components: [new Component(Component.country, "fr")]);

The library use google_maps_webservice library which directly refer to the official documentation for google maps web service.

About

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Dart 100.0%