smart_verify 1.0.3
smart_verify: ^1.0.3 copied to clipboard
A Flutter SDK for authentication with RSA encryption, designed for authentication.
example/lib/main.dart
// example/lib/main.dart
import 'package:flutter/material.dart';
import 'network_check_page.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'SmartVerify SDK Example',
theme: ThemeData(primarySwatch: Colors.blue),
home: const NetworkCheckPage(),
);
}
}