Flutter 调用拨号页面拨打电话
之前一直不知道url_launcher这个库的用途,开发到需要掉用系统拨号页面时,才知道
首先在flutter项目中的pubspec.yaml文件中添加
url_launcher: ^6.0.6
然后Pub get一下就可以使用了,代码:
GestureDetector(
child:Image.asset(
"assets/images/ic_tel.png",
fit:BoxFit.fitWidth,
width:30,
),
onTap: (){
launch("tel:1555010999");
},
),
支持的URL Schemes
Scheme | Action |
---|---|
http:<URL> , https:<URL> , e.g. http://flutter.dev | Open URL in the default browser |
mailto:<email address>?subject=<subject>&body=<body> , e.g. mailto:smith@example.org?subject=News&body=New%20plugin | Create email to |
tel:<phone number> , e.g. tel:+1 555 010 999 | Make a phone call to |
sms:<phone number> , e.g. sms:5550101234 | Send an SMS message to |
搞定。
本站内容来源于作者发布和网络转载,如有版权相关问题请及时与我们取得联系,我们将立即删除。