This commit is contained in:
SomnusVeritas
2023-10-20 16:59:51 +02:00
commit 5f341cfc77
33 changed files with 709 additions and 0 deletions

20
lib/main.dart Normal file
View File

@@ -0,0 +1,20 @@
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Maggs\' Victory Voyage',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
);
}
}