From e5595420201aef55ee8115ea8c95a7b01e79d583 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 1 Jul 2026 20:51:31 +0300 Subject: [PATCH] Added main file --- src/main.dart | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/main.dart diff --git a/src/main.dart b/src/main.dart new file mode 100644 index 0000000..27222a6 --- /dev/null +++ b/src/main.dart @@ -0,0 +1,21 @@ +import 'package:flutter/material.dart'; + +void main() => runApp(const CipherDiskApp()); + +class CipherDiskApp extends StatelessWidget { + const CipherDiskApp({super.key}); + + @override + Widget build(BuildContext context) { + return Scaffold( + // App bar with a title + appBar: AppBar( + backgroundColor: Colors.green, + title: const Text( + "GeeksforGeeks", + style: TextStyle(color: Colors.white), + ), + ), + ); + } +}