local_biometric 0.0.3 copy "local_biometric: ^0.0.3" to clipboard
local_biometric: ^0.0.3 copied to clipboard

A robust, efficient, and performant local biometric identity plugin for Flutter.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'pages/home_page.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Local Biometric Example',
      theme: ThemeData(
        useMaterial3: true,
        colorSchemeSeed: Colors.blue,
        appBarTheme: const AppBarTheme(
          centerTitle: true,
          elevation: 2,
        ),
      ),
      home: const HomePage(),
    );
  }
}
2
likes
160
points
107
downloads

Documentation

API reference

Publisher

verified publishertherivanta.com

Weekly Downloads

A robust, efficient, and performant local biometric identity plugin for Flutter.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter, meta

More

Packages that depend on local_biometric

Packages that implement local_biometric