gengmei_flutter_plugin 0.0.723 gengmei_flutter_plugin: ^0.0.723 copied to clipboard
A new Flutter plugin.
import 'dart:io';
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:gengmei_flutter_plugin/gengmei_flutter_plugin.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.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: const Text('Plugin example app'),
),
body: GridView.builder(
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 3,
crossAxisSpacing: 5,
mainAxisSpacing: 5,
childAspectRatio: 1),
itemCount: list.length,
itemBuilder: (BuildContext context, int index) {
if (list[index] == null || list[index].isEmpty) {
return Container();
}
return Container(
decoration: BoxDecoration(
image: DecorationImage(
image: FileImage(File(list[index])), fit: BoxFit.cover),
borderRadius: BorderRadius.all(Radius.circular(5.0))),
margin: EdgeInsets.only(left: 8, top: 3, right: 8, bottom: 3),
height: 100,
width: 100.0,
);
}),
),
);
}
}