Flutter/外部ライブラリ/url launcher
提供: 初心者エンジニアの簡易メモ
2019年11月15日 (金) 14:36時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==url launcherとは== 外部起動させるもので、メールやブラウザを起動できる。 ==インストール== pubspec.yaml url_launcher: 3.0.0 ==メー...」)
url launcherとは
外部起動させるもので、メールやブラウザを起動できる。
インストール
pubspec.yaml
url_launcher: 3.0.0
メール起動サンプル
String url = "mailto:sample@example.com?subject=subject1&body=honbun1"; if (await canLaunch(url)) { await launch(url); } else { throw 'Could not launch $url'; }