url_launcher拨打电话、浏览网页、发短信、发邮件
2018-11-22 本文已影响0人
王保全_1098
url_launcher官方GitHub地址
import 'package:url_launcher/url_launcher.dart';
// 拨打电话
_dial() async {
const url = 'tel:4006820016';
if (await canLaunch(url)) {
await launch(url);
} else {
throw 'Could not launch $url';
}
}