passkeys 0.1.0 copy "passkeys: ^0.1.0" to clipboard
passkeys: ^0.1.0 copied to clipboard

A flutter package to enable passkey authentication.

Use this package as a library

Depend on it

Run this command:

With Dart:

 $ dart pub add passkeys

With Flutter:

 $ flutter pub add passkeys

This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):

dependencies:
  passkeys: ^0.1.0

Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.

Import it

Now in your Dart code, you can use:

import 'package:passkeys/authenticator/exceptions.dart';
import 'package:passkeys/authenticator/passkey_authenticator.dart';
import 'package:passkeys/passkey_auth.dart';
import 'package:passkeys/relying_party_server/corbado/corbado_passkey_backend.dart';
import 'package:passkeys/relying_party_server/corbado/types/authentication.dart';
import 'package:passkeys/relying_party_server/corbado/types/authentication.g.dart';
import 'package:passkeys/relying_party_server/corbado/types/exceptions.dart';
import 'package:passkeys/relying_party_server/corbado/types/exceptions.g.dart';
import 'package:passkeys/relying_party_server/corbado/types/registration.dart';
import 'package:passkeys/relying_party_server/corbado/types/registration.g.dart';
import 'package:passkeys/relying_party_server/corbado/types/shared.dart';
import 'package:passkeys/relying_party_server/relying_party_server.dart';
import 'package:passkeys/relying_party_server/types/authentication.dart';
import 'package:passkeys/relying_party_server/types/registration.dart';