Last updated:
0 purchases
share specified app
A Flutter plugin for sharing file to specified app.
Example #
final _shareSpecifiedAppPlugin = ShareSpecifiedApp();
_shareSpecifiedAppPlugin.shareFile(
path: filePath, // provide local file path
packageName: "com.tencent.mobileqq", // share file to qq
whenNotFoundApp: () {
ScaffoldMessenger.of(context)
.showSnackBar(const SnackBar(content: Text('Not found app.')));
});
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.