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

description: Un plugin de autenticación biométrica para Flutter compatible con Android e iOS.

example/lib/main.dart

import 'package:biometric_auth_plugin_example/biometric_auth_plugin.dart';
import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  Future<void> _authenticate() async {
    bool success = await BiometricAuthPlugin.authenticate();
    print(success);
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: Text("Biometric Plugin")),
        body: Center(
          child: ElevatedButton(
            onPressed: _authenticate,
            child: Text("Autenticar con Biometría"),
          ),
        ),
      ),
    );
  }
}
3
likes
0
points
18
downloads

Publisher

unverified uploader

Weekly Downloads

description: Un plugin de autenticación biométrica para Flutter compatible con Android e iOS.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on biometric_auth_plugin

Packages that implement biometric_auth_plugin