receive_sharing_intent_ohos 1.0.0
receive_sharing_intent_ohos: ^1.0.0 copied to clipboard
A flutter plugin that enables flutter apps to receive sharing photos, text or url from other apps.
receive_sharing_intent_ohos #
A Flutter plugin that enables flutter apps to receive sharing photos, videos, text, urls or any other file types from another app.
| ohos | |
|---|---|
| Support | SDK 2.19.6 |
注:ohos与android字体大小不一致
Usage #
To use this plugin, add receive_sharing_intent_ohos as a dependency in your pubspec.yaml file. For example:
dependencies:
receive_sharing_intent: 1.8.0
receive_sharing_intent_ohos: 1.0.0
Add the following to your receive_sharing_intent\receive_sharing_intent_ohos\example\ohos\entry\src\main\module.json5:
...
"actions": [
"ohos.want.action.sendData"
],
"uris": [
{
"scheme": "file",
"utd": "general.entity",
"maxFileSupported": 1
},
{
"scheme": "file",
"utd": "general.object",
"maxFileSupported": 1
},
]
...
Compiling issues and their fixes
-
Error: No such module 'receive_sharing_intent_ohos'
- Fix: Go to Build Phases of your Runner target and move
Embed Foundation Extensionto the top ofThin Binary.
- Fix: Go to Build Phases of your Runner target and move
-
Error: App does not build after adding Share Extension?
- Fix: Check Build Settings of your share extension and remove everything that tries to import Cocoapods from your main project. i.e. remove everything under
Linking/Other Linker Flags
- Fix: Check Build Settings of your share extension and remove everything that tries to import Cocoapods from your main project. i.e. remove everything under
-
You might need to disable bitcode for the extension target
-
Error: Invalid Bundle. The bundle at 'Runner.app/Plugins/Sharing Extension.appex' contains disallowed file 'Frameworks'
Full Example #
main.dart
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:receive_sharing_intent_ohos/receive_sharing_intent_ohos.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
late StreamSubscription _intentSub;
final _sharedFiles = <SharedMediaFile>[];
@override
void initState() {
super.initState();
// Listen to media sharing coming from outside the app while the app is in the memory.
_intentSub = ReceiveSharingIntent.instance.getMediaStream().listen((value) {
setState(() {
_sharedFiles.clear();
_sharedFiles.addAll(value);
print(_sharedFiles.map((f) => f.toMap()));
});
}, onError: (err) {
print("getIntentDataStream error: $err");
});
// Get the media sharing coming from outside the app while the app is closed.
ReceiveSharingIntent.instance.getInitialMedia().then((value) {
setState(() {
_sharedFiles.clear();
_sharedFiles.addAll(value);
print(_sharedFiles.map((f) => f.toMap()));
// Tell the library that we are done processing the intent.
ReceiveSharingIntent.instance.reset();
});
});
}
@override
void dispose() {
_intentSub.cancel();
super.dispose();
}
@override
Widget build(BuildContext context) {
const textStyleBold = const TextStyle(fontWeight: FontWeight.bold);
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Column(
children: <Widget>[
Text("Shared files:", style: textStyleBold),
Text(_sharedFiles
.map((f) => f.toMap())
.join(",\n****************\n")),
],
),
),
),
);
}
}
支持格式 #
| 格式 | android | ios | harmonyOS |
|---|---|---|---|
| reset | ✅ | ✅ | ✅ |
| getInitialMedia | ✅ | ✅ | ✅ |