feat: Gestion des secteurs et migration v3.0.4+304

- Ajout système complet de gestion des secteurs avec contours géographiques
- Import des contours départementaux depuis GeoJSON
- API REST pour la gestion des secteurs (/api/sectors)
- Service de géolocalisation pour déterminer les secteurs
- Migration base de données avec tables x_departements_contours et sectors_adresses
- Interface Flutter pour visualisation et gestion des secteurs
- Ajout thème sombre dans l'application
- Corrections diverses et optimisations

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
pierre
2025-08-07 11:01:45 +02:00
parent 3bbc599ab4
commit 1018b86537
620 changed files with 120502 additions and 91396 deletions

7
app/lib/shared/widgets/admin_background.dart Normal file → Executable file
View File

@@ -7,9 +7,9 @@ class AdminBackground extends StatelessWidget {
final Widget child;
const AdminBackground({
Key? key,
super.key,
required this.child,
}) : super(key: key);
});
@override
Widget build(BuildContext context) {
@@ -26,7 +26,8 @@ class AdminBackground extends StatelessWidget {
),
child: CustomPaint(
painter: DotsPainter(),
child: Container(width: double.infinity, height: double.infinity),
child:
const SizedBox(width: double.infinity, height: double.infinity),
),
),
// Contenu de la page