Skip to content

Files

Latest commit

50f9ee9 · Apr 23, 2021

History

History
This branch is 1931 commits behind flutter/plugins:main.

share

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 19, 2021
Apr 23, 2021
Mar 19, 2021
Mar 19, 2021
Mar 19, 2021
Mar 19, 2021
Mar 18, 2021
Mar 2, 2021
Mar 19, 2021
Feb 13, 2021
Mar 17, 2021
Apr 23, 2021

Share plugin

pub package

A Flutter plugin to share content from your Flutter app via the platform's share dialog.

Wraps the ACTION_SEND Intent on Android and UIActivityViewController on iOS.

Usage

To use this plugin, add share as a dependency in your pubspec.yaml file.

Example

Import the library.

import 'package:share/share.dart';

Then invoke the static share method anywhere in your Dart code.

Share.share('check out my website https://example.com');

The share method also takes an optional subject that will be used when sharing to email.

Share.share('check out my website https://example.com', subject: 'Look what I made!');

To share one or multiple files invoke the static shareFiles method anywhere in your Dart code. Optionally you can also pass in text and subject.

Share.shareFiles(['${directory.path}/image.jpg'], text: 'Great picture');
Share.shareFiles(['${directory.path}/image1.jpg', '${directory.path}/image2.jpg']);