feat(frontend): scaffold Flutter Web app with ENSUP home screen

This commit is contained in:
SaidSoighiri94
2026-07-06 10:37:21 +02:00
parent be7d095fc3
commit d12302e8a6
22 changed files with 1096 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
import "package:flutter/material.dart";
import "theme/ensup_theme.dart";
import "screens/home_screen.dart";
void main() {
runApp(const EmeApp());
}
class EmeApp extends StatelessWidget {
const EmeApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "EME — Emprunt Matériel ENSUP",
debugShowCheckedModeBanner: false,
theme: buildEnsupTheme(),
home: const HomeScreen(),
);
}
}