flutter_fingerprint_reconization 0.0.1 copy "flutter_fingerprint_reconization: ^0.0.1" to clipboard
flutter_fingerprint_reconization: ^0.0.1 copied to clipboard

PlatformAndroid

A Flutter plugin that allows you to recognize fingerprint authentication on an Android device.

example/lib/main.dart

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

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  final plugin = FingerprintReconization();

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: Text('Fingerprint Demo')),
        body: Center(
          child: ElevatedButton(
            child: Text("Authentifier"),
            onPressed: () async {
              try {
                final result = await plugin.authenticate();
                print('Résultat : $result');
              } catch (e) {
                print('Erreur : $e');
              }
            },
          ),
        ),
      ),
    );
  }
}
5
likes
140
points
17
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin that allows you to recognize fingerprint authentication on an Android device.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on flutter_fingerprint_reconization

Packages that implement flutter_fingerprint_reconization