share_plus 1.0.0 copy "share_plus: ^1.0.0" to clipboard
share_plus: ^1.0.0 copied to clipboard

outdated

Flutter plugin for sharing content via the platform share UI, using the ACTION_SEND intent on Android and UIActivityViewController on iOS.

Flutter Community: share_plus

pub package

Share plugin #

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.

Please set your constraint to share_plus: '>=0.6.y+x <2.0.0'

Backward compatible 1.0.0 version is coming #

The plugin has reached a stable API, we guarantee that version 1.0.0 will be backward compatible with 0.6.y+z. Please use share_plus: '>=0.6.y+x <2.0.0' as your dependency constraint to allow a smoother ecosystem migration. For more details see: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0

Usage #

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

Example #

Import the library.

import 'package:share_plus/share_plus.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']);
2997
likes
0
pub points
100%
popularity

Publisher

verified publisherfluttercommunity.dev

Flutter plugin for sharing content via the platform share UI, using the ACTION_SEND intent on Android and UIActivityViewController on iOS.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, meta, mime, share_plus_linux, share_plus_platform_interface

More

Packages that depend on share_plus