feat: Enhance background geofence functionality with notifications and localization support

This commit is contained in:
Achintha Isuru
2026-03-13 21:44:39 -04:00
parent 6f57cae247
commit 8fcf1d9d98
12 changed files with 188 additions and 56 deletions

View File

@@ -26,11 +26,12 @@ class HubAddressAutocomplete extends StatelessWidget {
Widget build(BuildContext context) {
return GooglePlaceAutoCompleteTextField(
textEditingController: controller,
boxDecoration: null,
focusNode: focusNode,
inputDecoration: decoration ?? const InputDecoration(),
googleAPIKey: AppConfig.googleMapsApiKey,
debounceTime: 500,
countries: HubsConstants.supportedCountries,
//countries: HubsConstants.supportedCountries,
isLatLngRequired: true,
getPlaceDetailWithLatLng: (Prediction prediction) {
onSelected?.call(prediction);