如何在 flutter web 中启动 WhatsApp 或从浏览器启动 WhatsApp?
How to launch WhatsApp in flutter web or launch WhatsApp from browser?
如何在 Flutter web 中启动 WhatsApp 或在 Flutter 中从 browser 启动 WhatsApp 或建议 pub.dev 中的任何软件包?
您可以给一个带 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
您需要 url_launcher https://pub.dev/packages/url_launcher。在你的 yaml 中导入包,然后在你的 .dart
然后使用 WhatsApp 的启动功能 URL: launch('whatsapp://send?phone=$phonenumber')
要启动 WhatsApp 网站,请使用 launch('https://web.whatsapp.com')
如何在 Flutter web 中启动 WhatsApp 或在 Flutter 中从 browser 启动 WhatsApp 或建议 pub.dev 中的任何软件包?
您可以给一个带 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
您需要 url_launcher https://pub.dev/packages/url_launcher。在你的 yaml 中导入包,然后在你的 .dart
然后使用 WhatsApp 的启动功能 URL: launch('whatsapp://send?phone=$phonenumber')
要启动 WhatsApp 网站,请使用 launch('https://web.whatsapp.com')