惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
博客园 - 【当耐特】
GbyAI
GbyAI
M
MIT News - Artificial intelligence
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research
腾讯CDC
F
Fortinet All Blogs
IT之家
IT之家
WordPress大学
WordPress大学
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
DataBreaches.Net
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Help Net Security
V
Visual Studio Blog
小众软件
小众软件
Y
Y Combinator Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
biometric_guard: The Best Flutter Package for Biometric A...
Shahul Hamee · 2026-05-12 · via DEV Community

A complete guide to biometric_guard — a Flutter package for biometric and device-credential authentication with built-in session management, widget guards, route guards, reactive UI state, and lifecycle-safe background/foreground handling.


What Is biometric_guard?

If you've ever used Flutter biometric authentication, you've probably come across local_auth.

While local_auth provides the core authenticate() API, developers still need to build:

  • Session timeout handling
  • Route protection
  • Widget-level guards
  • Background/foreground lifecycle handling
  • Reactive UI updates
  • Testing utilities

biometric_guard brings all of these features together in one clean and easy-to-use API.


Why Use biometric_guard?

Key Features

  • Session timeout support
  • BiometricGuard for widget-level protection
  • BiometricRoute for route-level authentication
  • SessionStateBuilder for reactive UI
  • Fingerprint, Face ID, Touch ID, and device credentials
  • Resume authentication when returning from background
  • Biometric-only mode
  • Strongly typed AuthResult
  • Testing support

Platform Support

Android

  • Minimum Version: API 23 (Android 6.0)
  • Supports Fingerprint Authentication
  • Supports Face Authentication
  • Supports PIN / Device Credentials
  • Supports Resume on Foreground

iOS

  • Minimum Version: iOS 13.0
  • Supports Touch ID
  • Supports Face ID
  • Supports Passcode Authentication
  • Supports Resume on Foreground

Installation

Add the package to your pubspec.yaml:

dependencies:
  biometric_guard: ^1.0.4

Enter fullscreen mode Exit fullscreen mode

Then run:

flutter pub get

Enter fullscreen mode Exit fullscreen mode


Android Setup

1. Change MainActivity Base Class

Open:

android/app/src/main/kotlin/.../MainActivity.kt

// Before
import io.flutter.embedding.android.FlutterActivity
class MainActivity : FlutterActivity()

// After
import io.flutter.embedding.android.FlutterFragmentActivity
class MainActivity : FlutterFragmentActivity()

Enter fullscreen mode Exit fullscreen mode

Without this change, authentication will fail with AuthResultCode.notFragmentActivity.


2. Add Permissions

In AndroidManifest.xml:

<uses-permission android:name="android.permission.USE_BIOMETRIC" />
<uses-permission android:name="android.permission.USE_FINGERPRINT" />

Enter fullscreen mode Exit fullscreen mode


3. Set Minimum SDK

In build.gradle:

android {
  defaultConfig {
    minSdkVersion 23
  }
}

Enter fullscreen mode Exit fullscreen mode


iOS Setup

1. Add Face ID Usage Description

In ios/Runner/Info.plist:

<key>NSFaceIDUsageDescription</key>
<string>We use Face ID to verify your identity.</string>

Enter fullscreen mode Exit fullscreen mode


2. Set Minimum Deployment Target

In Podfile:

platform :ios, '13.0'

Enter fullscreen mode Exit fullscreen mode


Quick Start

import 'package:biometric_guard/biometric_guard.dart';

final result = await BiometricSessionManager.instance.authenticate(
  intent: AuthIntent.secure,
);

if (result.isSuccess) {
  print('Authenticated successfully');
} else if (result.isCanceled) {
  print('User cancelled');
} else if (result.isLockedOut) {
  print('Too many failed attempts');
} else {
  print(result.message);
}

Enter fullscreen mode Exit fullscreen mode


BiometricGuard — Widget-Level Protection

BiometricGuard(
  intent: AuthIntent.secure,
  sessionTimeout: const Duration(minutes: 5),
  onSuccess: () => Navigator.pushNamed(context, '/home'),
  onFailure: () => _showAuthErrorDialog(context),
  child: const HomeScreen(),
)

Enter fullscreen mode Exit fullscreen mode


Custom Prompt Strings

BiometricGuard(
  intent: AuthIntent.custom,
  contents: const AuthContents(
    title: 'Unlock Vault',
    subtitle: 'Use your fingerprint or face',
    description: 'Your data is protected by biometric lock',
  ),
  child: const VaultScreen(),
)

Enter fullscreen mode Exit fullscreen mode


BiometricRoute — Route-Level Protection

await Navigator.push(
  context,
  BiometricRoute(
    intent: AuthIntent.payment,
    builder: (_) => const PaymentScreen(),
  ),
);

Enter fullscreen mode Exit fullscreen mode


Biometric-Only Mode

BiometricRoute(
  intent: AuthIntent.payment,
  options: const AuthOptions(
    biometricOnly: true,
  ),
  builder: (_) => const PaymentScreen(),
)

Enter fullscreen mode Exit fullscreen mode


Session Management API

final manager = BiometricSessionManager.instance;

// Check if session is valid
final valid = manager.isSessionValid(
  const Duration(minutes: 5),
);

// Force re-authentication
manager.invalidateSession();

// Check device support
final supported = await manager.isDeviceSupported();

// Get available biometric types
final types = await manager.getAvailableTypes();

// Cancel current prompt
await manager.cancelAuthentication();

Enter fullscreen mode Exit fullscreen mode


Reactive UI with SessionStateBuilder

SessionStateBuilder(
  sessionTimeout: const Duration(minutes: 5),
  builder: (context, state) {
    return switch (state) {
      SessionActive() => const Icon(Icons.lock_open),
      SessionExpired() => const Icon(Icons.lock),
      SessionAuthenticating() => const CircularProgressIndicator(),
      SessionFailed() => const Icon(Icons.error_outline),
    };
  },
)

Enter fullscreen mode Exit fullscreen mode


SessionLockIndicator

SessionLockIndicator(
  sessionTimeout: const Duration(minutes: 5),
  activeChild: const Icon(Icons.lock_open),
  lockedChild: const Icon(Icons.lock),
)

Enter fullscreen mode Exit fullscreen mode


AuthIntent

AuthIntent automatically provides context-specific prompt titles.

Intent Use Case
AuthIntent.secure Login and sensitive screens
AuthIntent.payment Payments and transfers
AuthIntent.credentials Password managers
AuthIntent.custom Fully customized prompts

AuthResult

class AuthResult {
  final AuthResultCode code;
  final String message;
  final AuthType type;
}

Enter fullscreen mode Exit fullscreen mode

Convenience getters:

result.isSuccess
result.isCanceled
result.isLockedOut

Enter fullscreen mode Exit fullscreen mode


Resume Authentication on Foreground

await BiometricSessionManager.instance.authenticate(
  intent: AuthIntent.secure,
  options: const AuthOptions(
    resumeOnForeground: true,
  ),
);

Enter fullscreen mode Exit fullscreen mode

Useful for:

  • Banking apps
  • Healthcare apps
  • Enterprise applications

Testing Support

final manager = BiometricSessionManager.forTesting(
  _FakeChannel(
    AuthResult(
      code: AuthResultCode.success,
      message: 'ok',
      type: AuthType.biometric,
    ),
  ),
);

Enter fullscreen mode Exit fullscreen mode


Common Errors and Fixes

Problem Solution
notFragmentActivity Use FlutterFragmentActivity
Face ID crash Add NSFaceIDUsageDescription
noCredentials Enroll biometrics or device PIN
lockedOut Wait or unlock device with PIN
Prompt not appearing Add biometric permissions
Build error Set minSdkVersion 23
Pod install failure Set iOS deployment target to 12.0

Frequently Asked Questions

Does it work with only PIN or passcode?

Yes. Device credentials are supported even when biometrics are not enrolled.

Is the session persisted across app restarts?

No. Sessions are stored in memory only.

How do I force re-authentication?

BiometricSessionManager.instance.invalidateSession();

Enter fullscreen mode Exit fullscreen mode

Why does iOS sometimes return deviceCredential?

When biometricOnly: false, iOS may not report whether Face ID or passcode was used.


Ideal Use Cases

  • Banking applications
  • Password managers
  • Healthcare apps
  • Enterprise applications
  • Any app requiring secure access control

Conclusion

biometric_guard is a complete biometric authentication solution for Flutter.

It goes beyond local_auth by providing:

  • Session management
  • Widget guards
  • Route guards
  • Lifecycle-safe authentication
  • Reactive UI updates
  • Testing support

If you're building a secure Flutter application, biometric_guard can significantly reduce boilerplate and improve reliability.


Install It Today

dependencies:
  biometric_guard: ^1.0.4

Enter fullscreen mode Exit fullscreen mode

Pub.dev: https://pub.dev/packages/biometric_guard

GitHub: https://github.com/shahulhameed24/biometric_guard


If this package is useful, consider giving it a ⭐ on GitHub.

Built with ❤️ by Shahul Hameed