face_recognition_auth 1.0.4 copy "face_recognition_auth: ^1.0.4" to clipboard
face_recognition_auth: ^1.0.4 copied to clipboard

A powerful Flutter package that provides secure, reliable face recognition authentication using TensorFlow Lite and Google ML Kit. Implement face-based authentication in your Flutter apps with real-ti [...]

example/lib/main.dart

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

import 'providers/app_state_provider.dart';
import 'screens/home_screen.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return ChangeNotifierProvider(
      create: (context) => AppStateProvider(),
      child: MaterialApp(
        title: 'Face Recognition Auth Example',
        theme: ThemeData(
          primarySwatch: Colors.blue,
          useMaterial3: true,
          appBarTheme: const AppBarTheme(
            centerTitle: true,
            elevation: 2,
          ),
        ),
        home: const HomeScreen(),
        debugShowCheckedModeBanner: false,
      ),
    );
  }
}
2
likes
140
points
204
downloads

Publisher

unverified uploader

Weekly Downloads

A powerful Flutter package that provides secure, reliable face recognition authentication using TensorFlow Lite and Google ML Kit. Implement face-based authentication in your Flutter apps with real-time face detection, liveness detection, anti-spoofing, and a clean, customizable UI.

Repository (GitHub)
View/report issues
Contributing

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

camera, flutter, google_mlkit_commons, google_mlkit_face_detection, image, path, path_provider, provider, sqflite, tflite_flutter

More

Packages that depend on face_recognition_auth