日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > HTML >内容正文

HTML

Flutter 插件url_launcher简介及使用,打开外部浏览器,拨打电话,发送短信,打开微信,支付宝,qq等

發布時間:2025/3/19 HTML 47 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Flutter 插件url_launcher简介及使用,打开外部浏览器,拨打电话,发送短信,打开微信,支付宝,qq等 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

url_launcher

插件名稱:url_launcher

使用Demo

import 'package:flutter/material.dart'; import 'package:url_launcher/url_launcher.dart';class Url_launcherPage extends StatefulWidget {@override_Url_launcherPageState createState() => _Url_launcherPageState(); }class _Url_launcherPageState extends State<Url_launcherPage> {@overrideWidget build(BuildContext context) {return Container(color: Colors.white,child: ListView(children: [textButtonItem('打開外部瀏覽器', "https://cflutter.com"),textButtonItem('撥打電話', "tel:10086"),textButtonItem('發送短信', "sms:10086"),textButtonItem('打開微信', "weixin://"),textButtonItem('打開支付寶', 'alipays://'),textButtonItem('打開淘寶', 'taobao://'),textButtonItem('發送郵件', "mailto:luckly@gmail.com?subject=Test&body=測試"),// 協議格式:mailto:<email address>?subject=<subject>&body=<body>],),);}Widget textButtonItem(String title, String urlLink) {return TextButton(child: Text(title),onPressed: () async {var url = urlLink;if (await canLaunch(url)) {await launch(url);} else {throw 'Could not launch $url';}},);} }

打開其它應用時,都是改變相應的url協議地址即可,跳轉原理參照原生開發使用的url scheme,常用的如下:

QQ: mqq:// 微信: weixin:// 京東: openapp.jdmoble:// 測試了,好像不行 淘寶: taobao:// 美團: imeituan:// 點評: dianping:// 1號店: wccbyihaodian:// 支付寶: alipay:// 微博: sinaweibo:// 騰訊微博: TencentWeibo:// weico微博: weico:// 知乎: zhihu:// 豆瓣fm: doubanradio:// 網易公開課: ntesopen:// Chrome: googlechrome:// QQ瀏覽器: mqqbrowser:// uc瀏覽器: ucbrowser:// 搜狗瀏覽器: SogouMSE:// 百度地圖: baidumap:// bdmap:// 優酷: youku:// 人人: renren:// 我查查: wcc:// 有道詞典: yddictproapp:// 微盤: sinavdisk:// 名片全能王: camcard://

總結

以上是生活随笔為你收集整理的Flutter 插件url_launcher简介及使用,打开外部浏览器,拨打电话,发送短信,打开微信,支付宝,qq等的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。