ym_share 0.0.1 copy "ym_share: ^0.0.1" to clipboard
ym_share: ^0.0.1 copied to clipboard

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

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:ym_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']);

ym_share #

2
likes
0
points
2
downloads

Publisher

unverified uploader

Weekly Downloads

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

More

Packages that depend on ym_share

Packages that implement ym_share