biopassid_fingerprint_sdk 2.0.2 copy "biopassid_fingerprint_sdk: ^2.0.2" to clipboard
biopassid_fingerprint_sdk: ^2.0.2 copied to clipboard

BioPass ID Fingerprint SDK Flutter plugin.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'screens/home_screen.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'BioPass ID Fingerprint SDK Plugin Demo',
      theme: ThemeData().copyWith(
        colorScheme: ThemeData().colorScheme.copyWith(
              primary: const Color(0XFF000000),
            ),
      ),
      debugShowCheckedModeBanner: false,
      home: const HomeScreen(),
    );
  }
}
4
likes
115
pub points
55%
popularity

Publisher

verified publisherbiopassid.com

BioPass ID Fingerprint SDK Flutter plugin.

Homepage

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on biopassid_fingerprint_sdk