The face recognition authentication package contains a number of useful containers with functionality that can help you with building fingerprint authentication screens for your app. The package contains description and result text.

Features

Will be added later.

Getting started

packages need for use this library:

local_auth: ^2.2.0 (use their latest version)

Usage

class FingerprintAuth extends StatelessWidget {
  const FingerprintAuth({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: FaceRecognition(
            supportedText = "This device is supported",
            notSupportedText = "This device is not supported",
            dividerHeight = 100,
            availableBiometricsText = "Get available biometrics",
            authenticateButtonText = "Authenticate",
            localizedReasonText = "Authentication"
        ),
      ),
    );
  }
}

Libraries

face_recognition