nashid_verify_sdk 1.0.4
nashid_verify_sdk: ^1.0.4 copied to clipboard
The nashid_verify_sdk Flutter plugin provides an interface to integrate the Nashid SDK into your application for document scanning and verification purposes.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:nashid_io_example/select_environment_screen.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.deepPurple,
// primary: Colors.deepPurple,
// surface: Colors.deepPurple,
),
useMaterial3: true,
),
home: const SelectEnvironmentScreen(),
);
}
}