flutter_google_places_ex 0.0.1+1 copy "flutter_google_places_ex: ^0.0.1+1" to clipboard
flutter_google_places_ex: ^0.0.1+1 copied to clipboard

A simple package that provides google places autocomplete widgets for flutter.

flutter_google_places_ex #

Flutter Community: flutter_google_places_ex

Pub

This library provides Google places autocomplete widgets for flutter. It uses google_maps_webservice_ex 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.

Inspired by the google_maps_webservice package.

Now with Null-safety.

Installation #

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

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

0
likes
60
points
15
downloads

Publisher

unverified uploader

Weekly Downloads

A simple package that provides google places autocomplete widgets for flutter.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, google_api_headers, google_maps_webservice_ex, http, rxdart

More

Packages that depend on flutter_google_places_ex