x509_cert_store 0.9.0
x509_cert_store: ^0.9.0 copied to clipboard
A package that helps add certificates to the local certificate store using the flutter windows desktop app.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:x509_cert_store_example/page/home_page.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: HomePage(),
);
}
}