biopassid_flutter 0.1.9 copy "biopassid_flutter: ^0.1.9" to clipboard
biopassid_flutter: ^0.1.9 copied to clipboard

discontinuedreplaced by: biopassid_face_sdk
PlatformAndroidiOS

BioPassID flutter plugin.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'BioPassID Plugin',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      debugShowCheckedModeBanner: false,
      home: const HomeScreen(),
    );
  }
}