If you find this plugin useful, please consider supporting me:
Note Original repository: https://pub.dev/packages/google_places_picker
The problem with the original repository is that it will no longer be maintained by the creator, for this reason this repository was created in order to maintain updated code and make respective improvements as long as it is required.
Google Places Autocomplete for Flutter
- Run the
initializemethod in yourmain.dart'sinitState(or anywhere it would only be called once) with your API keys as arguments:
import 'package:place_picker_plus/place_picker_plus.dart';
PluginGooglePlacePicker().initialize(
androidApiKey: "YOUR_ANDROID_API_KEY",
iosApiKey: "YOUR_IOS_API_KEY",
);You can use the plugin via the showAutocomplete methods, which takes a PlaceAutocompleteMode paramater to know whether to display the fullscreen or the overlay control on Android (it has no effect on iOS). It returns a Place object with the following properties:
- name
- id
- address
- latitude
- longitude
