Had to yoink stuff out witl dir

This commit is contained in:
2023-12-25 16:30:33 +02:00
parent ed52d29201
commit c7e53e0326
131 changed files with 0 additions and 0 deletions

19
lib/main.dart Normal file
View File

@@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
import 'package:witl/home_screen.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "Entry Point",
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const HomeScreen(),
);
}
}