flutter_google_places_v2 0.1.0 copy "flutter_google_places_v2: ^0.1.0" to clipboard
flutter_google_places_v2: ^0.1.0 copied to clipboard

PlatformAndroid

Google places autocomplete widgets for flutter. No wrapper, use https://pub.flutter-io.cn/packages/google_maps_webservice

flutter_google_places_v2 #

Flutter Community: flutter_google_places

Pub

This library provides Google places autocomplete widgets for flutter. It uses google_maps_webservice library which directly refer to the official documentation for google maps web service.

According to https://stackoverflow.com/a/52545293, you need to enable billing on your account, even if you are only using the free quota.

Installation #

In the dependencies: section of your pubspec.yaml, add the following line:

dependencies:
  flutter_google_places_v2: <latest_version>

Usage #

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")]);

Examples:

Example App #

View the Flutter app in the example directory.

1
likes
120
points
35
downloads

Publisher

unverified uploader

Weekly Downloads

Google places autocomplete widgets for flutter. No wrapper, use https://pub.flutter-io.cn/packages/google_maps_webservice

Documentation

API reference

License

unknown (license)

Dependencies

flutter, google_api_headers, google_maps_webservice, http, rxdart

More

Packages that depend on flutter_google_places_v2