Flutter 启动外部浏览器

引入url_launcher插件

pubspec.yaml文件中引入:

dependencies:
  url_launcher: ^5.1.2

作用及使用

在应用中打开外部浏览器

  1. 参考网址:url_launcher
  2. 使用方式:

     import 'package:url_launcher/url_launcher.dart';
    
     _launchURL(apkUrl) async {
         if (await canLaunch(apkUrl)) {
         await launch(apkUrl);
         } else {
         throw 'Could not launch $apkUrl';
         }
     }

欢迎加群讨论更多flutter相关问题(7天有效)如果失效,可加个人微信拉群

 

你可能感兴趣的:(flutter,flutter启动外部浏览器,flutter打开http,flutter,打开外部url)