feat(auth): amélioration UI et UX étape 4 inscription parent
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user