Setup flutter folder structure

This commit is contained in:
2025-06-19 22:12:26 +02:00
parent bc3101f22e
commit ad60c33ae0
2 changed files with 13 additions and 104 deletions

View File

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