jtmuller5 / flutter_google_places

Google Places - Google places autocomplete widgets for flutter. No wrapper, use https://pub.dev/packages/google_maps_webservice. Maintainer: @juliansteenbakker

Home Page:https://pub.dev/packages/flutter_google_places

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

flutter_google_places

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: <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.

About

Google Places - Google places autocomplete widgets for flutter. No wrapper, use https://pub.dev/packages/google_maps_webservice. Maintainer: @juliansteenbakker

https://pub.dev/packages/flutter_google_places

License:Other


Languages

Language:Dart 94.7%Language:Ruby 3.4%Language:Objective-C 1.9%