wc_flutter_share 0.4.0 wc_flutter_share: ^0.4.0 copied to clipboard
A Flutter plugin for sharing file, text and subject at the same time with other applications.
wc_flutter_share #
A Flutter plugin for sharing file, text and subject at the same time with other applications on Android, iOS (iPhone, iPad).
Note for iOS #
Your flutter's iOS code needs to be in swift. Otherwise you will get error:
=== BUILD TARGET flutter_inappbrowser OF PROJECT Pods WITH CONFIGURATION Debug === The “Swift Language Version” (SWIFT_VERSION) build setting must be set to a supported value for targets which use Swift. Supported values are: 3.0, 4.0, 4.2. This setting can be set in the build settings editor.
Instead, if you have already a non-swift project, you can check this issue to solve the problem: Friction adding swift plugin to objective-c project.
Note for Android #
Your android support libraries needs to be of androidx. If you want to migrate your android project to androidx, you can take help from Migrating to AndroidX
Usage #
Import: #
import 'package:wc_flutter_share/wc_flutter_share.dart';
Share text:
WcFlutterShare.share(
sharePopupTitle: 'Share',
subject: 'This is subject',
text: 'This is text',
mimeType: 'text/plain');
Share file only:
final ByteData bytes = await rootBundle.load('assets/wisecrab.png');
await WcFlutterShare.share(
sharePopupTitle: 'share',
fileName: 'share.png',
mimeType: 'image/png',
bytesOfFile: bytes.buffer.asUint8List());
Share file, text and subject:
final ByteData bytes = await rootBundle.load('assets/wisecrab.png');
await WcFlutterShare.share(
sharePopupTitle: 'share',
subject: 'This is subject',
text: 'This is text',
fileName: 'share.png',
mimeType: 'image/png',
bytesOfFile: bytes.buffer.asUint8List());
Share on iPad:
WcFlutterShare.share(
sharePopupTitle: 'Share',
subject: 'This is subject',
text: 'This is text',
mimeType: 'text/plain',
iPadConfig: IPadConfig(
originX: 0,
originY: 0,
originHeight: 0,
originWidth: 0,
));
NOTE: You won't be able to share image and text simultaneously on some applications. It is not a bug of this plugin. Some applications don't support this. I have tested this on Skype, on which is working fine.
Check out the example app in the Repository for further information.
More from Wisecrab:
- Form Validators: A plugin which provides utility functions to make form validation easy.