feat: Implement authentication service and login handling with role-based navigation

This commit is contained in:
Hanim
2025-09-03 11:03:53 +02:00
parent 864d72eb40
commit 9fd6cb7b76
10 changed files with 242 additions and 11 deletions
@@ -0,0 +1,17 @@
import 'package:flutter/material.dart';
class GestionnairesCreate extends StatelessWidget {
const GestionnairesCreate({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Créer un gestionnaire'),
),
body: const Center(
child: Text('Formulaire de création de gestionnaire'),
),
);
}
}