From ac982166303809a1a7654ee71f0c13c76a40bcee Mon Sep 17 00:00:00 2001 From: tall3at <91608104+tall3at@users.noreply.github.com> Date: Wed, 15 Dec 2021 21:15:13 +0500 Subject: [PATCH] basic structure 1.0 --- lib/config/routes.dart | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) 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(), + }; }