flutter_passkey_service 0.0.3
flutter_passkey_service: ^0.0.3 copied to clipboard
A comprehensive Flutter plugin for seamless Passkey (WebAuthn) integration on iOS and Android. Enable passwordless authentication with biometric security.
import 'package:flutter/material.dart';
import 'passkey_example.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Passkey Service Demo',
theme: ThemeData(primarySwatch: Colors.blue, useMaterial3: true),
home: PasskeyExample(),
debugShowCheckedModeBanner: false,
);
}
}