tree: 5dcee9ddfbafed28344a07e2b5cf8388fa0977b7 [path history] [tgz]
  1. android/
  2. example/
  3. ios/
  4. lib/
  5. .gitignore
  6. CHANGELOG.md
  7. LICENSE
  8. pubspec.yaml
  9. README.md
packages/share/README.md

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('check out my website https://example.com');