feat(frontend): add emprunt confirmation screen (completes borrow flow)

This commit is contained in:
SaidSoighiri94
2026-07-06 15:18:48 +02:00
parent 9941ae97dc
commit 0f72c021ba
4 changed files with 237 additions and 4 deletions
+4 -1
View File
@@ -12,7 +12,10 @@ class LoginScreen extends StatelessWidget {
void _identifier(BuildContext context) {
Navigator.of(context).push(
MaterialPageRoute(builder: (_) => const HomeScreen()),
MaterialPageRoute(
builder: (_) => const HomeScreen(),
settings: const RouteSettings(name: "home"),
),
);
}