Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 775 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 775 Bytes

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 via

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');

To share a file invoke the static shareFile method anywhere in your Dart code

Share.shareFile(File('${directory.path}/image.jpg'));