Added main file

This commit is contained in:
2026-07-01 20:51:31 +03:00
parent adb42f8b50
commit e559542020
+21
View File
@@ -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),
),
),
);
}
}