mnc_identifier_face 1.0.2 copy "mnc_identifier_face: ^1.0.2" to clipboard
mnc_identifier_face: ^1.0.2 copied to clipboard

MNC liveness detection flutter plugin

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:mnc_identifier_face/mnc_identifier_face.dart';
import 'package:mnc_identifier_face/model/liveness_detection_result_model.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  LivenessDetectionResult? livenessResult;
  final _mncIdentifierFacePlugin = MncIdentifierFace();

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Liveness Identifier Example'),
        ),
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              Text(livenessResult?.toJson().toString() ?? "Data still empty"),
              ElevatedButton(
                onPressed: () async {
                  livenessResult =
                      await _mncIdentifierFacePlugin.startLivenessDetection();
                  setState(() {});
                },
                child: const Text("START LIVENESS IDENTIFIER"),
              )
            ],
          ),
        ),
      ),
    );
  }
}