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), + ), + ), + ); + } +}