caf_face_liveness 5.0.0 caf_face_liveness: ^5.0.0 copied to clipboard
A Flutter plugin for Caf.io solution for facial verification. This plugin uses smart cameras to capture reliable selfies of your users with artificial intelligence, detecting and rejecting photo and v [...]
import 'package:bmprogresshud/bmprogresshud.dart';
import 'package:caf_face_liveness/face_liveness.dart';
import 'package:caf_face_liveness/face_liveness_enums.dart';
import 'package:caf_face_liveness/face_liveness_events.dart';
import 'package:caf_face_liveness/reverse_proxy_settings.dart';
import 'package:flutter/material.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> {
var _scanInProgress = false;
String _result = "";
String _description = "";
String mobileToken = "";
String personId = "";
var personIdController = TextEditingController();
var mobileTokenController = TextEditingController();
bool isBeta = true;
@override
void initState() {
super.initState();
}
void startFaceLiveness() {
personId = personIdController.text;
mobileToken = mobileTokenController.text;
setState(() {
_scanInProgress = true;
_result = "";
_description = "";
});
ProgressHud.show(ProgressHudType.loading, 'Launching SDK');
FaceLiveness faceLiveness =
FaceLiveness(mobileToken: mobileToken, personId: personId);
faceLiveness.setStage(isBeta ? CafStage.beta : CafStage.prod);
faceLiveness.setCameraFilter(CameraFilter.natural);
faceLiveness.setEnableScreenshots(true);
faceLiveness.setEnableLoadingScreen(false);
// Put the others parameters here
final stream = faceLiveness.start();
stream.listen((event) {
if (event.isFinal) {
setState(() => _scanInProgress = false);
}
if (event is FaceLivenessEventConnecting) {
ProgressHud.show(ProgressHudType.loading, 'Loading...');
} else if (event is FaceLivenessEventConnected) {
ProgressHud.dismiss();
} else if (event is FaceLivenessEventClosed) {
ProgressHud.dismiss();
setState(() {
_result = 'Canceled';
_description = 'Usuário fechou o SDK';
});
} else if (event is FaceLivenessEventSuccess) {
ProgressHud.showAndDismiss(ProgressHudType.success, 'Success!');
setState(() {
_result = 'Success!';
_description = '\nSignedResponse: ${event.signedResponse}';
});
print(
'SDK finished with Success! \nSignedResponse: ${event.signedResponse}');
} else if (event is FaceLivenessEventFailure) {
ProgressHud.showAndDismiss(ProgressHudType.error, event.errorType!);
setState(() {
_result = 'Failure!';
_description = personId.isEmpty
? '\nError type: ${event.errorType} \nError Message: personId is empty'
: '\nError type: ${event.errorType} \nError Message: ${event.errorDescription}';
});
print(
'SDK finished with Failure! \nError type: ${event.errorType} \nError Message: ${event.errorDescription}');
}
});
if (!mounted) return;
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('FaceLiveness Demo'),
),
body: ProgressHud(
isGlobalHud: true,
child: Container(
margin: const EdgeInsets.all(20.0),
child: Column(
children: [
Row(
children: [
Expanded(
child: TextField(
controller: mobileTokenController,
decoration: const InputDecoration(
border: OutlineInputBorder(),
labelText: 'Insert mobileToken here',
),
),
)
],
),
const SizedBox(height: 10.0),
Row(
children: [
Expanded(
child: TextField(
controller: personIdController,
decoration: const InputDecoration(
border: OutlineInputBorder(),
labelText: 'Insert your ID/CPF here',
),
),
)
],
),
Row(
children: [
Expanded(
child: SwitchListTile(
title: const Text('Beta'),
value: isBeta,
onChanged: (bool value) {
setState(() {
isBeta = value;
});
}),
)
],
),
Row(
children: [
ElevatedButton(
onPressed: _scanInProgress
? null
: () {
startFaceLiveness();
},
child: const Text('Start FaceLiveness'),
)
],
),
Row(
children: [
Container(
margin: const EdgeInsets.only(top: 10.0),
child: Text("Result: $_result"))
],
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Expanded(
child: Text("Description:\n$_description",
maxLines: 15,
overflow: TextOverflow.ellipsis),
)
],
),
],
)))));
}
}