aadhar_auth_service 0.0.1
aadhar_auth_service: ^0.0.1 copied to clipboard
Aadhaar Auth Service is a robust and secure SDK/API designed to seamlessly integrate Aadhaar-based authentication and e-KYC into your application. It provides all the necessary tools for various authe [...]
example/lib/main.dart
import 'package:example/view/auth/aadhaar_verification_screen.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Aadhar Authentication Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
),
home: AadhaarVerificationScreen(
auaCode: 'public',
subAuaCode: 'public',
licenseKey: 'public',
asaLicenseKey: 'public',
),
);
}
}