diff --git a/lib/config/routes.dart b/lib/config/routes.dart index 33c8eb0..4d1049e 100644 --- a/lib/config/routes.dart +++ b/lib/config/routes.dart @@ -1,13 +1,4 @@ -import 'package:mohem_flutter_app/pages/dashboard/dashboard_page.dart'; -import 'package:mohem_flutter_app/pages/user/complete_profile_page.dart'; -import 'package:mohem_flutter_app/pages/user/forget_password_page.dart'; -import 'package:mohem_flutter_app/pages/user/login_verification_page.dart'; -import 'package:mohem_flutter_app/pages/user/login_verify_account_page.dart'; -import 'package:mohem_flutter_app/pages/user/profile/profile_1_page.dart'; -import 'package:mohem_flutter_app/pages/user/profile/profile_2_page.dart'; -import 'package:mohem_flutter_app/pages/user/profile/profile_3_page.dart'; -import 'package:mohem_flutter_app/pages/user/register_page.dart'; -import 'package:mohem_flutter_app/pages/user/register_selection_page.dart'; + import 'package:mohem_flutter_app/pages/user/splash_page.dart'; import 'package:flutter/material.dart'; @@ -32,15 +23,6 @@ class AppRoutes { static final Map routes = { //User splash: (context) => SplashPage(), - registerSelection: (context) => RegisterSelectionPage(), - loginVerifyAccount: (context) => LoginVerifyAccountPage(), - register: (context) => RegisterPage(), - forgetPassword: (context) => ForgetPasswordPage(), - loginVerification: (context) => LoginVerificationPage(), - dashboard: (context) => DashboardPage(), - completeProfile: (context) => CompleteProfilePage(), - profile1: (context) => Profile1Page(), - profile2: (context) => Profile2Page(), - profile3: (context) => Profile3Page(), + }; }