Initial commit

This commit is contained in:
jonas
2024-11-18 14:45:53 +01:00
commit 497fefd17c
27 changed files with 720 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const Placeholder(),
);
}
}