Skip to content
This repository was archived by the owner on Jan 25, 2025. It is now read-only.

Commit 141d2cc

Browse files
committed
feat: share into
1 parent d1aee89 commit 141d2cc

File tree

5 files changed

+87
-4
lines changed

5 files changed

+87
-4
lines changed

android/app/src/main/AndroidManifest.xml

+11
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,17 @@
2525
<action android:name="android.intent.action.MAIN"/>
2626
<category android:name="android.intent.category.LAUNCHER"/>
2727
</intent-filter>
28+
29+
<intent-filter>
30+
<action android:name="android.intent.action.SEND" />
31+
<category android:name="android.intent.category.DEFAULT" />
32+
<data android:mimeType="application/pdf" />
33+
</intent-filter>
34+
<intent-filter>
35+
<action android:name="android.intent.action.SEND_MULTIPLE" />
36+
<category android:name="android.intent.category.DEFAULT" />
37+
<data android:mimeType="application/pdf" />
38+
</intent-filter>
2839
</activity>
2940
<!-- Don't delete the meta-data below.
3041
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
3+
<share-target android:targetClass="com.example.lazyext.MainActivity">
4+
<data android:mimeType="application/pdf" />
5+
<category android:name="com.example.lazyext.dynamic_share_target" />
6+
</share-target>
7+
</shortcuts>

lib/main.dart

+36-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
import 'dart:async';
2+
13
import 'package:flutter/material.dart' hide Material;
4+
import 'package:jni/jni.dart';
25
import 'package:lazyext/app/background.dart';
36
import 'package:lazyext/app/document_source.dart';
47
import 'package:lazyext/app/drawer_provider.dart';
@@ -12,10 +15,11 @@ import 'package:lazyext/screens/monitor.dart';
1215
import 'package:lazyext/screens/settings.dart';
1316
import 'package:lazyext/screens/storageroot.dart';
1417
import 'package:lazyext/widgets/drawer.dart';
15-
import 'package:mupdf_android/mupdf_android.dart';
18+
import 'package:mupdf_android/mupdf_android.dart' as mupdf;
1619
import 'package:provider/provider.dart';
1720
import 'package:go_router/go_router.dart';
1821
import 'package:flutter_dotenv/flutter_dotenv.dart';
22+
import 'package:share_handler/share_handler.dart';
1923

2024
import 'google/classroom.dart';
2125
import 'google/drive.dart';
@@ -39,9 +43,37 @@ class MainWidget extends StatefulWidget {
3943
}
4044

4145
class _MainWidgetState extends State<MainWidget> {
46+
StreamSubscription? sub;
47+
48+
void handleSharedMedia(SharedMedia event) {
49+
print("eey");
50+
List<SharedAttachment>? attachments = event.attachments?.nonNulls.toList();
51+
if (attachments != null) {
52+
print(attachments);
53+
_router.go("/compare",
54+
extra: attachments
55+
.map((e) => mupdf.Document.openDocument(e.path.toJString())
56+
.toPDFDocument())
57+
.nonNulls);
58+
}
59+
}
60+
4261
@override
43-
initState() {
62+
void initState() {
4463
super.initState();
64+
final handler = ShareHandlerPlatform.instance;
65+
handler
66+
.getInitialSharedMedia()
67+
.then((value) => value != null ? handleSharedMedia(value) : null);
68+
sub = handler.sharedMediaStream.listen((event) {
69+
handleSharedMedia(event);
70+
});
71+
}
72+
73+
@override
74+
void dispose() {
75+
super.dispose();
76+
sub?.cancel();
4577
}
4678

4779
late final _router = GoRouter(
@@ -82,8 +114,8 @@ class _MainWidgetState extends State<MainWidget> {
82114
GoRoute(
83115
path: '/compare',
84116
builder: (context, state) {
85-
Iterable<PDFDocument>? extra =
86-
state.extra as Iterable<PDFDocument>?;
117+
Iterable<mupdf.PDFDocument>? extra =
118+
state.extra as Iterable<mupdf.PDFDocument>?;
87119
if (extra == null) {
88120
return const Placeholder();
89121
} else {

pubspec.lock

+32
Original file line numberDiff line numberDiff line change
@@ -817,6 +817,38 @@ packages:
817817
url: "https://pub.dev"
818818
source: hosted
819819
version: "3.2.1"
820+
share_handler:
821+
dependency: "direct main"
822+
description:
823+
name: share_handler
824+
sha256: "1cafe26e024e988de3aff73c5425a48a1374e497152ddd4f54fc9f48c40e80fe"
825+
url: "https://pub.dev"
826+
source: hosted
827+
version: "0.0.17"
828+
share_handler_android:
829+
dependency: transitive
830+
description:
831+
name: share_handler_android
832+
sha256: "6e752f2c4f67a9f7bef5503f6e1b0dd6075e127cafe7763d92649559c3692bc6"
833+
url: "https://pub.dev"
834+
source: hosted
835+
version: "0.0.7"
836+
share_handler_ios:
837+
dependency: transitive
838+
description:
839+
name: share_handler_ios
840+
sha256: "25815e7946b03848f404bd5bc8e58c94060dd050fb7fe3a2b556a464379c5ee1"
841+
url: "https://pub.dev"
842+
source: hosted
843+
version: "0.0.10"
844+
share_handler_platform_interface:
845+
dependency: transitive
846+
description:
847+
name: share_handler_platform_interface
848+
sha256: "7a4df95a87b326b2f07458d937f2281874567c364b7b7ebe4e7d50efaae5f106"
849+
url: "https://pub.dev"
850+
source: hosted
851+
version: "0.0.6"
820852
share_plus:
821853
dependency: "direct main"
822854
description:

pubspec.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ dependencies:
8383
hive_flutter: ^1.1.0
8484
hive_generator: ^2.0.1
8585
path: ^1.8.3
86+
share_handler: ^0.0.17
8687

8788
dev_dependencies:
8889
flutter_test:

0 commit comments

Comments
 (0)