Hanim 01a7937004 feat: Implement multi-step registration for Childminder with data validation and summary display
- Added routes for registration steps 2, 3, and 4 in app_router.dart.
- Created AmRegisterStep2Screen for entering professional details including birth date, city, country, social security number, agreement number, and max children.
- Implemented validation for social security number and max children fields.
- Developed AmRegisterStep3Screen for entering a motivation message and accepting terms and conditions.
- Created AmRegisterStep4Screen to display a summary of the registration data for review before submission.
- Introduced SummaryCard widget for displaying user information in a structured format.
- Enhanced DataGenerator utility to provide realistic data for testing.
2025-08-18 16:37:27 +02:00
..
2025-07-31 10:55:12 +02:00
2025-07-31 10:55:12 +02:00
2025-07-31 10:55:12 +02:00
2025-07-31 10:55:12 +02:00
2025-07-31 10:55:12 +02:00
2025-07-31 10:55:12 +02:00
2025-07-31 10:55:12 +02:00
2025-07-31 10:55:12 +02:00

petitspas

A new Flutter project.

Getting Started

This project is a starting point for a Flutter application.

A few resources to get you started if this is your first Flutter project:

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

Workflow Git

Le projet suit un Git Flow simplifié avec 3 branches principales :

  • main : version stable et déployée en production
  • develop : version intégrée et testée avant passage en production
  • feature/*, fix/*, hotfix/* : branches spécifiques au développement

Cycle standard :

# Création dune feature
git checkout develop
git checkout -b feature/FRONT-021-zone-enfants

# Développement
git add .
git commit -m "FRONT-021: Widget zone enfants"
git push origin feature/FRONT-021-zone-enfants

# Pull Request => vers develop
# Merge → suppression de la branche
Voir CONTRIBUTING.md pour les conventions détaillées.

Structure du projet Flutter

Le projet suit une architecture modulaire MVC simplifiée compatible avec Provider (ou Riverpod léger).

lib/
├── main.dart                  # Point dentrée
├── routes/                   # go_router ou auto_route
├── models/                   # Classes de données (User, Parent, Enfant, etc.)
├── services/                 # Requêtes HTTP, AuthService, StorageService
├── utils/                    # Helpers, validateurs, formatteurs
├── widgets/                  # Composants UI réutilisables
├── screens/                  # Pages par grande fonctionnalité
│   ├── auth/                 # Connexion, inscription, mot de passe oublié
│   ├── registration/         # Création parent / assistante maternelle
│   ├── dashboard/            # Tableau de bord parent / AM / gestionnaire
│   ├── profile/              # Gestion des infos utilisateur
│   └── children/             # Fiches enfants

Architecture choisie

🟩 Type : MVC Modulaire avec Provider (ou Riverpod léger)

Avantages :

  • Simple à prendre en main
  • Rapide à structurer
  • Permet la séparation des features
  • Adaptée à un projet Flutter Web PWA