cryptography_flutter 2.0.0-nullsafety.0 cryptography_flutter: ^2.0.0-nullsafety.0 copied to clipboard
A version of 'package:cryptography' that speeds up asynchronous invocations with native APIs of Android, iOS, and Mac OS X.
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Text('Example'));
}
}