face_auth_kit 0.1.0 copy "face_auth_kit: ^0.1.0" to clipboard
face_auth_kit: ^0.1.0 copied to clipboard

Offline Flutter face authentication: 1:1 face matching and silent liveness detection for Android and iOS. UI-agnostic wrapper around face_verification and face_anti_spoofing_detector.

example/lib/main.dart

import 'package:face_auth_kit_example/pages/home_page.dart';
import 'package:flutter/material.dart';

Future<void> main() async {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(const FaceAuthKitExampleApp());
}

class FaceAuthKitExampleApp extends StatelessWidget {
  const FaceAuthKitExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Face Auth Kit Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.indigo),
        useMaterial3: true,
      ),
      home: const HomePage(),
    );
  }
}
0
likes
140
points
32
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Offline Flutter face authentication: 1:1 face matching and silent liveness detection for Android and iOS. UI-agnostic wrapper around face_verification and face_anti_spoofing_detector.

Repository (GitHub)
View/report issues

Topics

#flutter #face-recognition #biometrics #liveness-detection #authentication

License

MIT (license)

Dependencies

camera, face_anti_spoofing_detector, face_verification, flutter, google_mlkit_commons, google_mlkit_face_detection, image, path_provider

More

Packages that depend on face_auth_kit