This commit is contained in:
SomnusVeritas
2023-11-08 10:12:41 +01:00
commit 7a0d1391ec
30 changed files with 1519 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: 'Get Stuff Done',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
);
}
}