feat(frontend): add student identification screen as entry point

This commit is contained in:
SaidSoighiri94
2026-07-06 11:25:40 +02:00
parent e492220af4
commit 97faf3e9ee
6 changed files with 287 additions and 23 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
import "package:flutter/material.dart";
import "theme/ensup_theme.dart";
import "screens/home_screen.dart";
import "screens/login_screen.dart";
void main() {
runApp(const EmeApp());
@@ -15,7 +15,7 @@ class EmeApp extends StatelessWidget {
title: "EME — Emprunt Matériel ENSUP",
debugShowCheckedModeBanner: false,
theme: buildEnsupTheme(),
home: const HomeScreen(),
home: const LoginScreen(),
);
}
}