url_launcher 是 Flutter 中一個常用的插件,用於打開外部應用或在瀏覽器中打開 URL。這個插件讓你可以在應用中啟動地圖、撥打電話、發送郵件或者在默認瀏覽器中打開一個網頁。
要使用這個插件,需要在 pubspec.yaml 文件中添加 dependencies:
dependencies:
flutter:
sdk: flutter
url_launcher: ^6.3.0
在 Dart 文件中導入 url_launcher 包:
import 'package:url_launcher/url_launcher.dart';
final Uri url = Uri.parse('https://www.google.com.tw/');
if (await canLaunchUrl(url)) {
await launchUrl(url);
} else {
throw 'Could not launch $url';
}
點擊中間按鈕,就會跳轉到 Google 頁面
我們明天見~