Strange empty circle in Google Places autocomplete for iOS 26

1 week ago 21
ARTICLE AD BOX

After updating my app with the iOS 26, the Google Place picker autocomplete automatically added a empty circle in the left side:

enter image description here

How I can remove or add an image instead of that empty with circle that does nothing?

Again, this happens only in iOS 26.

The code:

struct PlacePicker: UIViewControllerRepresentable { func makeCoordinator() -> GooglePlacesCoordinator { GooglePlacesCoordinator() } @Environment(\.presentationMode) var presentationMode @Binding var address: String @Binding var latitude: Double @Binding var longitude: Double func makeUIViewController(context: UIViewControllerRepresentableContext<PlacePicker>) -> GMSAutocompleteViewController { let autocompleteController = GMSAutocompleteViewController() autocompleteController.delegate = context.coordinator let fields: GMSPlaceField = GMSPlaceField(rawValue:UInt(GMSPlaceField.name.rawValue) | UInt(GMSPlaceField.placeID.rawValue) | UInt(GMSPlaceField.coordinate.rawValue) | GMSPlaceField.addressComponents.rawValue | GMSPlaceField.formattedAddress.rawValue) autocompleteController.placeFields = fields let filter = GMSAutocompleteFilter() filter.type = .noFilter autocompleteController.autocompleteFilter = filter return autocompleteController }
Read Entire Article