face_detector_flutter 1.0.1 copy "face_detector_flutter: ^1.0.1" to clipboard
face_detector_flutter: ^1.0.1 copied to clipboard

A Flutter plugin for real-time face detection using Google ML Kit and Camera. Provides a simple API to detect faces, validate alignment, and capture the face image as bytes (Uint8List) for authenticat [...]

example/lib/main.dart

import 'package:example/screens/home_screen.dart';
import 'package:flutter/material.dart';

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

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

  @override
  Widget build(BuildContext context) => MaterialApp(
    title: 'Face Recognition Auth Demo',
    theme: ThemeData(
      primarySwatch: Colors.blue,
      useMaterial3: true,
      appBarTheme: const AppBarTheme(centerTitle: true, elevation: 0),
    ),
    home: const HomeScreen(),
    debugShowCheckedModeBanner: false,
  );
}
1
likes
130
points
191
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin for real-time face detection using Google ML Kit and Camera. Provides a simple API to detect faces, validate alignment, and capture the face image as bytes (Uint8List) for authentication or backend processing.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

camera, flutter, google_mlkit_commons, google_mlkit_face_detection, image, provider, tflite_flutter

More

Packages that depend on face_detector_flutter