Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

[share] Update README.md #3300

Merged
merged 7 commits into from
Feb 9, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/share/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Share plugin

[![pub package](https://img.shields.io/pub/v/share.svg)](https://pub.dartlang.org/packages/share)
[![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.
Expand All @@ -17,7 +17,7 @@ For more details see: https://github.com/flutter/flutter/wiki/Package-migration-

## Usage

To use this plugin, add `share` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/).
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

Expand All @@ -44,4 +44,4 @@ To share one or multiple files invoke the static `shareFiles` method anywhere in
``` dart
Share.shareFiles(['${directory.path}/image.jpg'], text: 'Great picture');
Share.shareFiles(['${directory.path}/image1.jpg', '${directory.path}/image2.jpg']);
```
```