# share_specified_app **Repository Path**: linyi517/share_specified_app ## Basic Information - **Project Name**: share_specified_app - **Description**: A Flutter plugin for sharing file to specified app. - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-17 - **Last Updated**: 2023-11-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README A Flutter plugin for sharing file to specified app in Android. ## Example ```dart 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.'))); }); ```