secure_enclave 0.1.1 copy "secure_enclave: ^0.1.1" to clipboard
secure_enclave: ^0.1.1 copied to clipboard

PlatformiOSmacOS

secure_enclave is implementation Apple Secure Enclave for Flutter

example/lib/main.dart

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(),
    );
  }
}
9
likes
150
points
288
downloads

Publisher

verified publisheranggaaryas.my.id

Weekly Downloads

secure_enclave is implementation Apple Secure Enclave for Flutter

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, json_annotation, plugin_platform_interface

More

Packages that depend on secure_enclave