diff --git a/lib/main.dart b/lib/main.dart index ce1dd5c..41fef46 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -31,22 +31,6 @@ void main() { ); } -void makeAlert(BuildContext context, String title, String message) { - showDialog( - context: context, - builder: (BuildContext context) => AlertDialog( - title: Text(title), - content: Text(message), - actions: [ - TextButton( - onPressed: () => Navigator.pop(context, 'OK'), - child: const Text('OK'), - ), - ], - ), - ); -} - Future generateKeyPair() async { final algorithm = Ed25519();