new_face_authenticator 4.0.0 new_face_authenticator: ^4.0.0 copied to clipboard
Flutter plugin cross-platform (iOS, Android) for Combate à Fraude's FaceAuthenticator (https://github.com/combateafraude).
import 'package:bmprogresshud/bmprogresshud.dart';
import 'package:flutter/material.dart';
import 'package:new_face_authenticator/caf_stage.dart';
import 'package:new_face_authenticator/camera_filter.dart';
import 'package:new_face_authenticator/face_authenticator.dart';
import 'package:new_face_authenticator/face_authenticator_events.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState 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 startFaceAuth() {
personId = personIdController.text;
mobileToken = mobileTokenController.text;
setState(() {
_scanInProgress = true;
_result = "";
_description = "";
});
ProgressHud.show(ProgressHudType.loading, 'Launching SDK');
FaceAuthenticator faceAuth =
FaceAuthenticator(mobileToken: mobileToken, personId: personId);
faceAuth.setStage(isBeta ? CafStage.beta : CafStage.prod);
faceAuth.setCameraFilter(CameraFilter.natural);
faceAuth.setEnableScreenshots(true);
// Put the others parameters here
final stream = faceAuth.start();
stream.listen((event) {
if (event.isFinal) {
setState(() => _scanInProgress = false);
}
if (event is FaceAuthenticatorEventConnecting) {
ProgressHud.show(ProgressHudType.loading, 'Loading...');
} else if (event is FaceAuthenticatorEventConnected) {
ProgressHud.dismiss();
} else if (event is FaceAuthenticatorEventClosed) {
ProgressHud.dismiss();
setState(() {
_result = "Canceled";
_description = "Usuário fechou o SDK";
});
print('Canceled\nUsuário fechou o SDK');
} else if (event is FaceAuthenticatorEventSuccess) {
ProgressHud.showAndDismiss(ProgressHudType.success, 'Success!');
setState(() {
_result = "Success";
_description = "SignedResponse: ${event.signedResponse}";
});
print('Success!\nSignedResponse: ${event.signedResponse}');
} else if (event is FaceAuthenticatorEventFailure) {
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(
'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('FaceAuthenticator Demo'),
),
body: ProgressHud(
isGlobalHud: true,
child: Container(
margin: const EdgeInsets.all(20.0),
child: Column(
children: [
Row(
children: [
Expanded(
child: TextField(
controller: mobileTokenController,
decoration: InputDecoration(
border: OutlineInputBorder(),
labelText: 'Insert mobileToken here',
),
),
)
],
),
SizedBox(height: 10.0),
Row(
children: [
Expanded(
child: TextField(
controller: personIdController,
decoration: InputDecoration(
border: OutlineInputBorder(),
labelText: 'Insert your ID/CPF here',
),
),
)
],
),
Row(
children: [
Expanded(
child: SwitchListTile(
title: Text('Beta'),
value: isBeta,
onChanged: (bool value) {
setState(() {
isBeta = value;
});
}),
)
],
),
Row(
children: [
ElevatedButton(
child: Text('Start FaceAuth'),
onPressed: _scanInProgress
? null
: () {
startFaceAuth();
},
)
],
),
Row(
children: [
Container(
margin: 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),
)
],
),
],
)))));
}
}