如何在 flutter web 中启动 WhatsApp 或从浏览器启动 WhatsApp?

问题描述 投票:0回答:3

如何在 Flutter web 中启动 WhatsApp 或从 Flutter 中的 浏览器 启动 WhatsApp 或从 pub.dev 推荐任何软件包?

flutter whatsapp flutter-web whatsapi
3个回答
3
投票

您可以使用 href 给锚点

https://api.whatsapp.com/send/?phone=(phone_number)

完整代码

<a href="https://api.whatsapp.com/send/?phone=6281144441111&text=Hello">Send Hi to me</a>

注:
确保您提供的国家/地区代码不带 (+)。
例如6281144441111


0
投票

您需要 url_launcher https://pub.dev/packages/url_launcher。将包导入到 yaml 中,然后导入到 .dart 中

然后使用带有 WhatsApp URL 的启动功能:

launch('whatsapp://send?phone=$phonenumber')

要启动 WhatsApp 网站,请使用

launch('https://web.whatsapp.com')


0
投票

https://faq.whatsapp.com/425247423114725/?cms_platform=iphone 此 URL 具有从外部应用程序或浏览器访问 Whatsapp 的最新方法。

© www.soinside.com 2019 - 2024. All rights reserved.