Build & Update frontend to start coding

This commit is contained in:
2024-03-24 11:37:28 +02:00
parent 54264d2c5a
commit 2242faef8a
40 changed files with 296 additions and 531 deletions

View File

@@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class Home extends StatelessWidget {
const Home({super.key});
@override
Widget build(BuildContext context) {
return const Text("Hello World");
}
}