facebook twitter hatena line email

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

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==shareとは== シェアを実装できるプラグインで、外部アプリとデータのやり取りを連携できる。 ==インストール== pubspec.yaml dep...」)
(相違点なし)

2019年11月18日 (月) 20:40時点における版

shareとは

シェアを実装できるプラグインで、外部アプリとデータのやり取りを連携できる。

インストール

pubspec.yaml

 dependencies:
   flutter:
     sdk: flutter
   share: ^0.6.3

サンプル

import 'package:share/share.dart';
IconButton(
 icon: Icon(Icons.share),
  onPressed: () {
   if (_formKey.currentState.validate()) {
      _formKey.currentState.save();
        Share.share(
        "シェアしたい内容を記入"
        );
   }
 },
)