udid_plugin 0.0.8 copy "udid_plugin: ^0.0.8" to clipboard
udid_plugin: ^0.0.8 copied to clipboard

udid plugin.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:udid_plugin/udid_plugin.dart';

import './engine_arg.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  final _uuidPlugin = UdidPlugin();
  StreamSubscription _subscription;

  @override
  void initState() {
    super.initState();

    _subscription = _uuidPlugin.errorStream.listen((errorResult) {
      print(errorResult.retMsg);
    });
  }

  @override
  void dispose() {
    _subscription.cancel();
    _uuidPlugin.dispose();
    super.dispose();
  }

  Future<Null> startLivenessFlow() async {
    LivenessResult result = await _uuidPlugin.startLivenessFlow(EngieArg().toJson());
    print(result.toString());
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: ListView(
          padding: EdgeInsets.fromLTRB(20, 40, 20, 20),
          children: <Widget>[
            new RaisedButton(
              padding: EdgeInsets.only(top: 15, bottom: 15),
              color: Colors.blue,
              textColor: Colors.white,
              onPressed: () {
                _uuidPlugin.startOCRFlow(EngieArg().toJson());
              },
              child: Center(
                // height: 44,
                child: Text("OCR"),
              ),
            ),
            new Padding(
              padding: EdgeInsets.only(top: 10),
            ),
            new RaisedButton(
              padding: EdgeInsets.only(top: 15, bottom: 15),
              color: Colors.blue,
              textColor: Colors.white,
              onPressed: () {
                startLivenessFlow();
              },
              child: Center(
                // height: 44,
                child: Text("活体检测"),
              ),
            ),
            new Padding(
              padding: EdgeInsets.only(top: 10),
            ),
            new RaisedButton(
              padding: EdgeInsets.only(top: 15, bottom: 15),
              color: Colors.blue,
              textColor: Colors.white,
              onPressed: () {
                _uuidPlugin.startIDAuthFlow(EngieArg().toJson());
              },
              child: Center(
                // height: 44,
                child: Text("身份认证"),
              ),
            ),
            new Padding(
              padding: EdgeInsets.only(top: 10),
            ),
            new RaisedButton(
              padding: EdgeInsets.only(top: 15, bottom: 15),
              color: Colors.blue,
              textColor: Colors.white,
              onPressed: () {
                _uuidPlugin.startCompareFlow(EngieArg().toJson());
              },
              child: Center(
                // height: 44,
                child: Text("人脸比对"),
              ),
            ),
            new Padding(
              padding: EdgeInsets.only(top: 10),
            ),
            new RaisedButton(
              padding: EdgeInsets.only(top: 15, bottom: 15),
              color: Colors.blue,
              textColor: Colors.white,
              onPressed: () {
                _uuidPlugin.startVideoFlow(EngieArg().toJson());
              },
              child: Center(
                // height: 44,
                child: Text("视频存证"),
              ),
            ),
            new Padding(
              padding: EdgeInsets.only(top: 10),
            ),
            new RaisedButton(
              padding: EdgeInsets.only(top: 15, bottom: 15),
              color: Colors.blue,
              textColor: Colors.white,
              onPressed: () {
                _uuidPlugin.startCustomFlow(EngieArg().toJson());
              },
              child: Center(
                // height: 44,
                child: Text("组合流程(身份认证+活体+比对)"),
              ),
            ),
            new Padding(
              padding: EdgeInsets.only(top: 10),
            ),
            new RaisedButton(
              padding: EdgeInsets.only(top: 15, bottom: 15),
              color: Colors.blue,
              textColor: Colors.white,
              onPressed: () {},
              child: Center(
                // height: 44,
                child: Text("拍照"),
              ),
            ),
          ],
        ),
      ),
    );
  }
}
0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

udid plugin.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on udid_plugin