情诗网 >情话短信 > 正文

Flutter调用短信、电话等

来源:情诗网    2021-03-09    分类:情话短信

插件地址:https://pub.flutter-io.cn/packages/url_launcher#-readme-tab-

body: ListView(
          children: <Widget>[
            MyRowText("打电话", () => doCall('tel:+1 555 010 999')),
            MyRowText("发短信", () => doCall('sms:5550101234')),
            //subject 主题 ;body内容
            MyRowText("发邮件", () => doCall('mailto:smith@example.org?subject=News&body=New%20plugin')),
            MyRowText("跳转浏览器", () => doCall('http://www.baidu.com')),
            MyRowText("跳转安卓App", () => doCall('ssbdapp://jump.com/communityhome')),
          ],
        ),
doCall(url) async {
    if (await canLaunch(url)) {
      await launch(url);
    } else {
      throw 'Could not launch $url';
    }
  }

码云地址:https://gitee.com/xgljh/Flutter.git

热门文章