feat(auth): amélioration UI et UX étape 4 inscription parent

This commit is contained in:
Julien Martin
2025-05-07 17:09:06 +02:00
parent 42d147c273
commit 0772f83369
4 changed files with 264 additions and 2 deletions
+6
View File
@@ -5,6 +5,7 @@ import '../screens/auth/register_choice_screen.dart';
import '../screens/auth/parent_register_step1_screen.dart';
import '../screens/auth/parent_register_step2_screen.dart';
import '../screens/auth/parent_register_step3_screen.dart';
import '../screens/auth/parent_register_step4_screen.dart';
import '../screens/home/home_screen.dart';
class AppRouter {
@@ -13,6 +14,7 @@ class AppRouter {
static const String parentRegisterStep1 = '/parent-register/step1';
static const String parentRegisterStep2 = '/parent-register/step2';
static const String parentRegisterStep3 = '/parent-register/step3';
static const String parentRegisterStep4 = '/parent-register/step4';
static const String home = '/home';
static Route<dynamic> generateRoute(RouteSettings settings) {
@@ -39,6 +41,10 @@ class AppRouter {
screen = const ParentRegisterStep3Screen();
slideTransition = true;
break;
case parentRegisterStep4:
screen = const ParentRegisterStep4Screen();
slideTransition = true;
break;
case home:
screen = const HomeScreen();
break;