flutter_share_plugin 0.1.3 copy "flutter_share_plugin: ^0.1.3" to clipboard
flutter_share_plugin: ^0.1.3 copied to clipboard

discontinuedreplaced by: share_plus
outdated

Flutter plugin for sharing any files and text to other apps.

flutter_share_plugin #

This plugin helps sharing content like, text, image or a file to other apps. It supports both Android and iOS, no additional changes are required in native code or projects (Except ofcourse the Storage Access permissions, you'll need to add that in your project manually).

pub package License: MIT

Install plugin: #

Visit Pub Packages page for flutter share plugin

Import library: #

import 'package:flutter_share_plugin/flutter_share_plugin.dart';

That's it. Now, you are ready to go.

Usage Examples: #

Share only text: #

FlutterShare.shareText("Text to be shared");

Share only file: #

String filePath = "../song.mp3";
FlutterShare.shareFile(filePath);

Share file and text content: #

String filePath = "../screenshot_123.jpg";
FlutterShare.shareFileWithText(textContent: "Screenshot attached", filePath: filePath);
6
likes
0
pub points
45%
popularity

Publisher

unverified uploader

Flutter plugin for sharing any files and text to other apps.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, path_provider

More

Packages that depend on flutter_share_plugin