简体   繁体   English

如何从 Flutter 中的预测中删除 Powered By Google

[英]How to Remove Powered By Google from Prediction in Flutter

I want to know if is there any way I can remove powered by Google logo from Prediction plugin in Flutter.我想知道是否有任何方法可以从 Flutter 中的预测插件中删除由 Google 提供支持的徽标。

图像

Thanks谢谢

Pass an empty Text widget di the logo property在 logo 属性中传递一个空的 Text 小部件

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);客户将展示 (i) Google 通过服务提供的所有属性(包括品牌、徽标以及版权和商标声明); or (ii) is specified in the Service Specific Terms.或 (ii) 在服务特定条款中指定。 Customer will not modify, obscure, or delete such attribution.客户不会修改、隐藏或删除此类归属。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM