gengmei_flutter_plugin 0.0.731 copy "gengmei_flutter_plugin: ^0.0.731" to clipboard
gengmei_flutter_plugin: ^0.0.731 copied to clipboard

A new Flutter plugin.

example/lib/main.dart

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.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> {
  @override
  Widget build(BuildContext context) {
    // TODO: implement build
    return Scaffold(
        body: GestureDetector(
            onTap: () {
              Navigator.push(
                  context,
                  MaterialPageRoute(
                      builder: (context) => AlbumPage(false, 10, null)));
            },
            child: Center(
              child: Text("wwwwwwww"),
            )));
  }
}
0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter plugin.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on gengmei_flutter_plugin