# flutter_google_places **Repository Path**: mirrors_GEBIT/flutter_google_places ## Basic Information - **Project Name**: flutter_google_places - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-02-11 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Flutter Community: flutter_google_places](https://fluttercommunity.dev/_github/header/flutter_google_places)](https://github.com/fluttercommunity/community) # flutter_google_places

pub version

Google places autocomplete widgets for flutter.
## Getting Started For help getting started with Flutter, view our online [documentation](http://flutter.io/). ```yaml # pubspec.yaml dependencies: flutter: sdk: flutter flutter_google_places: ``` ```dart 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")]); ``` The library use [google_maps_webservice](https://github.com/lejard-h/google_maps_webservice) library which directly refer to the official [documentation](https://developers.google.com/maps/web-services/) for google maps web service.