facebook twitter hatena line email

「Flutter/外部ライブラリ/url launcher」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==url launcherとは== 外部起動させるもので、メールやブラウザを起動できる。 ==インストール== pubspec.yaml url_launcher: 3.0.0 ==メー...」)
 
(メール起動サンプル)
行7: 行7:
  
 
==メール起動サンプル==
 
==メール起動サンプル==
  String url = "mailto:sample@example.com?subject=subject1&body=honbun1";
+
  String url = "mailto:sample@example.com?subject=subject1&body=" + Uri.encodeComponent("本文1");
 
  if (await canLaunch(url)) {
 
  if (await canLaunch(url)) {
 
       await launch(url);
 
       await launch(url);

2019年11月15日 (金) 14:37時点における版

url launcherとは

外部起動させるもので、メールやブラウザを起動できる。

インストール

pubspec.yaml

url_launcher: 3.0.0

メール起動サンプル

String url = "mailto:sample@example.com?subject=subject1&body=" + Uri.encodeComponent("本文1");
if (await canLaunch(url)) {
     await launch(url);
} else {
     throw 'Could not launch $url';
}

https://qiita.com/sekitaka_1214/items/c7b3251e3d4ea1dd4f53