diff --git a/lib/placesAutocompleteUtils.dart b/lib/placesAutocompleteUtils.dart index 51d5c2f..8f1552d 100644 --- a/lib/placesAutocompleteUtils.dart +++ b/lib/placesAutocompleteUtils.dart @@ -19,7 +19,10 @@ Future openPlacesDialog(BuildContext context) async { mode: _mode, // FIXME language: "es", - components: [new Component(Component.country, "es")]); + components: [ + // This limit the search too much + // new Component(Component.country, "es") + ]); if (p != null) { // get detail (lat/lng) PlacesDetailsResponse detail = await _places.getDetailsByPlaceId(p.placeId);