A Flutter plugin for sharing images & text with other applications.
Import:
import 'package:esys_flutter_share/esys_flutter_share.dart';
Share text:
await EsysFlutterShare.shareText('This is my text to share with other applications.', 'my text title');
Share image:
final ByteData bytes = await rootBundle.load('assets/image.png');
await EsysFlutterShare.shareImage('myImageTest.png', bytes, 'my image title');
Check out the example app in the Repository for further information.
This package is licensed under the Apache 2 license, see the LICENSE and AUTHORS files for details.