flutter如何打開第三方應用

圖片描述

如何打開第三方應用瀏覽器

彩蛋:
若是走完安裝流程後運行Flutter時提示:bash

export LANG=en_US.UTF-8 
        Error running pod install

須要在配置文件.bash_profile中加上:app

export LANG=en_US.UTF-8

1.flutter開發者網站下載url_launcher插件 下載連接async

2.在 pubspec.yaml 文件中添加依賴:網站

dependencies:
            url_launcher: ^5.0.3

3.安裝:url

flutter pub get

4.導入:spa

import 'package:url_launcher/url_launcher.dart';

5.使用:
一:打開瀏覽器
_launchURL、_openMapApp爲自定義方法名 能夠根據本身的場景自定義名稱插件

_launchURL() async {
        const url = 'https://flutter.io';
        if (await canLaunch(url)) {
          await launch(url);
        } else {
          throw 'Could not launch $url';
        }
      }

二:打開外部APP,如 打開地圖:code

打開外部APP 須要外部APP提供跳轉的schema圖片

_openMapApp() async {
        const url = 'geo:52.32,4.917'; //APP提供的schema
        if (await canLaunch(url)) {
          await (launch(url)); //安卓中打開
        } else {
          //iOS中打開
          const url = 'http://maps.apple.com/?ll=52.32,4.917';
          if (await canLaunch(url)) {
            await launch(url);
          } else {
            throw 'Could not launch $url';
          }
        }
      }
相關文章
相關標籤/搜索