authsignal_flutter 2.1.0 copy "authsignal_flutter: ^2.1.0" to clipboard
authsignal_flutter: ^2.1.0 copied to clipboard

The Authsignal Flutter SDK for Passkeys, Push, QR, and In-App Authentication

example/lib/main.dart

import 'package:flutter/material.dart';
import 'screens/home_screen.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Authsignal Flutter Example',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
        useMaterial3: true,
        cardTheme: CardThemeData(
          elevation: 2,
          shape: RoundedRectangleBorder(
            borderRadius: BorderRadius.circular(12),
          ),
        ),
      ),
      home: const HomeScreen(),
    );
  }
}
4
likes
80
points
249
downloads

Publisher

verified publisherauthsignal.com

Weekly Downloads

The Authsignal Flutter SDK for Passkeys, Push, QR, and In-App Authentication

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface

More

Packages that depend on authsignal_flutter

Packages that implement authsignal_flutter