OPEN-SOURCE FLUTTER PASSKEYS PACKAGE
Use the open-source Flutter `passkeys` package with your own WebAuthn server. It covers Android, iOS, macOS, web and Windows.
Connect the package to your own passkey relying party server and keep your backend logic in place.
Ship native and web passkey flows across Android, iOS, macOS, web and Windows from one package.
Use Passkeys Doctor and availability checks to validate RPID, AASA, Digital Asset Links and web configuration earlier.
WIRE THE FLUTTER CLIENT TO YOUR OWN BACKEND
Use your server for creation and assertion options, then let the package handle the platform-specific passkey flow in Flutter.
final authenticator = PasskeyAuthenticator();
final challenge = await relyingPartyServer.startLoginWithPasskey('user@example.com');
final platformRes = await authenticator.authenticate(challenge);
await relyingPartyServer.finishLoginWithPasskey(platformRes);PACKAGE, EXAMPLE AND TROUBLESHOOTING FOR FLUTTER PASSKEYS
These are the current resources for the open-source Flutter passkeys package, example app, live demo and setup diagnostics.
Corbado is the Passkey Intelligence Platform for large-scale CIAM teams running consumer authentication. We help you see what IDP logs and generic analytics tools can't: where passkeys, passwords, OTP, social login and fallback journeys succeed, stall or fail, which devices and browsers create friction, and when an OS update silently breaks login. Two products: Corbado Observe layers process mining and observability across authentication journeys. Corbado Connect adds managed passkeys with analytics built in alongside your IDP. VicRoads runs passkeys for 5M+ users with Corbado (+80% passkey activation). Talk to a Passkey Expert →
Start with the package, example app and Passkeys Doctor while keeping your own WebAuthn backend in place.