I want to know if is there any way I can remove powered by Google logo from Prediction plugin in Flutter.
Thanks
I want to know if is there any way I can remove powered by Google logo from Prediction plugin in Flutter.
Thanks
Pass an empty Text widget di the logo property
Prediction p = await PlacesAutocomplete.show(
context: context,
apiKey: kGoogleApiKey,
mode: Mode.overlay,
language: "it",
logo: Text(""),
components: [Component(Component.country, "it")],
);
Have a look on the Terms of Service, it says: Attribution. Customer will display all attribution that (i) Google provides through the Services (including branding, logos, and copyright and trademark notices); or (ii) is specified in the Service Specific Terms. Customer will not modify, obscure, or delete such attribution.