secure_enclave 0.1.1 secure_enclave: ^0.1.1 copied to clipboard
secure_enclave is implementation Apple Secure Enclave for Flutter
import 'package:flutter/material.dart';
import 'package:secure_enclave_example/dashboard.dart';
final _messangerKey = GlobalKey<ScaffoldMessengerState>();
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
scaffoldMessengerKey: _messangerKey,
home: const Dashboard(),
);
}
}