biopassid_face_sdk 3.0.0 copy "biopassid_face_sdk: ^3.0.0" to clipboard
biopassid_face_sdk: ^3.0.0 copied to clipboard

BioPass ID Face 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 StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'BioPass ID Face SDK Plugin Demo',
      theme: ThemeData().copyWith(
        colorScheme: ThemeData().colorScheme.copyWith(
              primary: const Color(0XFF000000),
            ),
      ),
      debugShowCheckedModeBanner: false,
      home: const HomeScreen(),
    );
  }
}