# image_share **Repository Path**: flutter-mirror/image_share ## Basic Information - **Project Name**: image_share - **Description**: 调用系统分享 - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-02-01 - **Last Updated**: 2023-12-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Share plugin --- ## Deprecation Notice This plugin has been replaced by the [Flutter Community Plus Plugins](https://plus.fluttercommunity.dev/) version, [`share_plus`](https://pub.dev/packages/share_plus). No further updates are planned to this plugin, and we encourage all users to migrate to the Plus version. Critical fixes (e.g., for any security incidents) will be provided through the end of 2021, at which point this package will be marked as discontinued. --- [![pub package](https://img.shields.io/pub/v/share.svg)](https://pub.dev/packages/share) 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](https://flutter.dev/docs/development/packages-and-plugins/using-packages/). ## Example Import the library. ``` dart import 'package:share/share.dart'; ``` Then invoke the static `share` method anywhere in your Dart code. ``` dart 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. ``` dart 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`. ``` dart Share.shareFiles(['${directory.path}/image.jpg'], text: 'Great picture'); Share.shareFiles(['${directory.path}/image1.jpg', '${directory.path}/image2.jpg']); ```