gpt4 book ai didi

android - Flutter 应用程序与设备内置应用程序通信

转载 作者:行者123 更新时间:2023-11-28 23:47:19 25 4
gpt4 key购买 nike

我想启用我的 Flutter 应用程序,以允许用户重定向到手机上的另一个应用程序,例如 Android 和 IOS 上的电话或邮件应用程序。

当他们点击时:

 a phone number => open the Phone app with the number passed into the app.
an email => open the Mail app with the email address passed into the app.

这可能吗?如果是的话,要使用什么小部件/插件?

最佳答案

您可以使用此软件包:https://pub.dartlang.org/packages/url_launcher

_launchDialer() async {
const url = 'tel:12345678';
if (await canLaunch(url)) {
await launch(url);
} else {
throw 'Could not launch $url';
}
}

_launchEmailApp() async {
const url = 'mailto:smith@example.org?subject=News&body=New%20plugin';
if (await canLaunch(url)) {
await launch(url);
} else {
throw 'Could not launch $url';
}
}

关于android - Flutter 应用程序与设备内置应用程序通信,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52472157/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com