【发布时间】:2022-01-06 05:24:12
【问题描述】:
我设计了一个函数来调用按下图标上的数字。 但它无法启动网址
_callMe() async {
print("Phone +91${store_phone}");
var uri = 'tel:+91${store_phone}';
if (await canLaunch(uri)) {
await launch(uri);
} else {
throw 'Could not launch $uri';
}
}
它打印错误 未处理的异常:无法启动 +919919195521
有什么帮助吗?
【问题讨论】:
标签: flutter flutter-layout flutter-dependencies flutter-web flutter-animation