google_places_autocomplete_text_field 1.1.0 copy "google_places_autocomplete_text_field: ^1.1.0" to clipboard
google_places_autocomplete_text_field: ^1.1.0 copied to clipboard

A fully customizable Google Places autocomplete TextFormField for Flutter iOS, Android and Web.

google_places_autocomplete_text_field #

This Flutter package helps you build a TextField that provides autocompletion suggestions from the new Google Places API.

Add the dependency to pubspec.yml ➕ #

dependencies:
  flutter:
    sdk: flutter
  google_places_autocomplete_text_field: <last-version>

copied to clipboard

Integrate the Google AutoComplete TextField Widget in your code 🧩 #

    GooglePlacesAutoCompleteTextFormField(
        textEditingController: controller,
        googleAPIKey: "YOUR_GOOGLE_API_KEY",
        proxyURL: "https://your-proxy.com/", // only needed if you build for the web
        debounceTime: 400, // defaults to 600 ms
        countries: ["de"], // optional, by default the list is empty (no restrictions)
        fetchCoordinates: true, // if you require the coordinates from the place details
        onPlaceDetailsWithCoordinatesReceived: (prediction) {
         // this method will return latlng with place detail
        print("Coordinates: (${prediction.lat},${prediction.lng})");
        }, // this callback is called when fetchCoordinates is true
        onSuggestionClicked: (prediction) {
         controller.text = prediction.description;
          controller.selection = TextSelection.fromPosition(TextPosition(offset: prediction.description.length));
        }
    )

copied to clipboard

Integrate the Google AutoComplete TextField Widget in your Web code 🌐 #

In case you're building for the web, you need to pass the widget a proxy URL, otherwise you will receive a CORS-Error, as there are calls to the Google Maps API being made from the frontend. If you are not Google, your domain will probably be different, thus leading to the CORS-Error. If you are Google: how ya doin 😏? I'd love to do an internship.

Customization Option #

You can customize the GooglePlacesAutoCompleteTextFormField as you would with any other TextFormField.

34
likes
130
points
2.87k
downloads

Publisher

unverified uploader

Weekly Downloads

2024.05.30 - 2025.04.24

A fully customizable Google Places autocomplete TextFormField for Flutter iOS, Android and Web.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

async, dio, flutter, rxdart

More

Packages that depend on google_places_autocomplete_text_field