How to add Google Maps Autocomplete search box in flutter?
I want to add an autocomplete search box in google maps using dart.
How to add Google Maps Autocomplete search box in flutter?
I want to add an autocomplete search box in google maps using dart.
add dependencies in pubspec.yaml
flutter_google_places:
after that, you can use this method
Future<void> _handlePressButton() async {
// show input autocomplete with selected mode
// then get the Prediction selected
Prediction p = await PlacesAutocomplete.show(
context: context,
apiKey: 'your_api_key',
// onError: onError,
mode: Mode.overlay,
language: "en",
components: [Component(Component.country, "in")],
);
}