1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
import 'dart:io';
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:gengmei_flutter_plugin/gengmei_flutter_plugin.dart';
import 'package:gengmei_flutter_plugin_example/AlbumModel/page/album/AlbumPage.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
List<String> list = List();
StreamSubscription listen;
@override
void initState() {
super.initState();
// GengmeiFlutterPlugin.clearShare().then((value){
// print("CLEAR ---> $value");
// });
// GengmeiFlutterPlugin.saveInt("INT", 6).then((value){
// print("VALUEEE --> $value");
// });
// GengmeiFlutterPlugin.getInt("INT", 0).then((value){
// print("get VALUEEE --> $value");
// });
// GengmeiFlutterPlugin.saveString("STRINGQW", "qwe");
// GengmeiFlutterPlugin.saveDouble("DOUBLE", 2.888);
// GengmeiFlutterPlugin.saveBool("BOOLEAN", false);
// List<String> set = new List();
// set.add("ww");
// set.add("qq");
// set.add("ww");
// set.add("ee");
// set.add("qwe");
// set.add("ewq");
// set.add("ppoo");
// GengmeiFlutterPlugin.saveStringList("LIST", set).then((value) {
// print("SAVE $value");
// });
//
// GengmeiFlutterPlugin.getStringList("LIST", null).then((value) {
// print("LIST $value");
// });
//
// GengmeiFlutterPlugin.getInt("INT", 0).then((value) {
// print("INT $value");
// });
// GengmeiFlutterPlugin.getString("STRINGeqweq", null).then((value) {
// print("STRING $value");
// });
// GengmeiFlutterPlugin.getDouble("DOUBLE", 1.1).then((value) {
// print("DOUBLEEE $value");
// });
// GengmeiFlutterPlugin.getbool("BOOLEAN", false).then((value) {
// print("BOOL $value");
// });
// GengmeiFlutterPlugin.saveStringList("LIST", ["ww"]);
// GengmeiFlutterPlugin.phoneImages().then((value) {
// print(value);
// var value2 = value["IsGengmeiAlbumAllImages"];
// List<String> temp = List();
// value2.forEach((item) {
// temp.add(item.path);
// print("!!!! ${item.path}");
// });
// setState(() {
// list = temp;
// });
// GengmeiFlutterPlugin.detectImg(
// "/storage/emulated/0/gengmei/1568624220570temp.jpg")
// .then((value) {
// print("result ${value}");
// });
// }).whenComplete(() {});
//// GengmeiFlutterPlugin.aiCamera().then((value) {
//// print("NATIVE CAMERA${value}");
//// }).whenComplete(() {});
//
// //phoneImagesEvent
// listen = GengmeiFlutterPlugin.phoneImagesEvent
// .receiveBroadcastStream()
// .listen(_onEvent, onError: _onError);
}
void _onEvent(Object event) {
var event1 = event as Map;
var event12 = event1["IsGengmeiAlbumAllImages"] as List;
event12.forEach((value) {
print("VALUEEE $value");
});
}
void _onError(Object error) {}
@override
void dispose() {
super.dispose();
listen.cancel();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: GestureDetector(
onTap: () {
// Navigator.push(
// context,
// new MaterialPageRoute(
// builder: (context) => AlbumPage(false, 10, null)));
},
child: const Text('Plugin example app'),
)),
body: HOME()));
}
}
class HOME extends StatefulWidget {
@override
State<StatefulWidget> createState() => HOMESTATE();
}
class HOMESTATE extends State<HOME> {
String imagePath;
List<String> realPath = [];
@override
Widget build(BuildContext context) {
// TODO: implement build
return Scaffold(
body: GestureDetector(
onTap: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => AlbumPage(false, 50, null)))
.then((value) {
List<String> ll = [];
var value2 = (value as List);
value2.forEach((item) {
var map = Map<String, String>.from(item);
ll.add(map["realImagePath"]);
});
setState(() {
realPath = ll;
// imagePath = value;
});
}).catchError((error) {
print(error);
});
},
child: Container(
width: double.maxFinite,
height: double.maxFinite,
color: Colors.yellow,
child: ListView.builder(
itemCount: realPath.length,
itemBuilder: (con, index) {
return Container(
width: double.maxFinite,
height: 500,
child: Image.file(
File(realPath[index]),
fit: BoxFit.fitHeight,
),
);
})
// imagePath == null ? Text("www") : Image.file(File(imagePath)),
)));
}
}