google_places_flutter 1.0.4 google_places_flutter: ^1.0.4 copied to clipboard
Custom Google places autocomplete widget for Android and iOS both. Use https://pub.dev/packages/google_places_flutter
google_places_flutter #
Add dependency into pubspec.yml #
dependencies:
flutter:
sdk: flutter
google_places_flutter: <last-version>
Google AutoComplete TextField Widget code #
GooglePlaceAutoCompleteTextField(
textEditingController: controller,
googleAPIKey: "YOUR_GOOGLE_API_KEY",
inputDecoration: InputDecoration()
debounceTime: 800 // default 600 ms,
itmClick: (Prediction prediction) {
controller.text=prediction.description;
controller.selection = TextSelection.fromPosition(TextPosition(offset: prediction.description.length));
}
)
Customization Option #
You can customize a text field input decoration and debounce time