medora-provider/lib/route/route_names.dart
2025-02-26 16:45:05 +05:30

38 lines
2.2 KiB
Dart

class RouteNames {
static const String signIn = '/sign-in';
static const String userProfile = '/user-profile';
static const String userHome = '/user-home';
static const String signUp = '/sign-up';
static const String launch = '/launch';
static const String profileUpload = '/profile-upload';
static const String familyMembersEditScreen = '/family-members-edit-screen';
static const String doctorAddressScreen = '/doctor-address-screen';
static const String profileDescriptionScreen = '/doctor-profile-description';
static const String experienceScreen = '/doctor-experience';
static const String specialitiesScreeen = '/doctor-specialities';
static const String digitalSignatureScreeen = '/doctor-signature';
static const String achievementsScreen = '/doctor-achievements';
static const String qualificationsScreen = '/doctor-qualifications';
static const String patientprofileScreen = '/patient-profile-screen';
static const String specialityScreen = '/speciality-screen';
static const String doctorListScreen = '/doctor-list-screen';
static const String doctorDetailsScreen = '/doctor-details-screen';
static const String consultationCenterScreen = '/consultations-center-screen';
static const String consultationTimeScreen = '/consultation-time-screen';
static const String consultationBookingScreen =
'/consultation-booking-screen';
static const String doctorDashbordScreen = '/doctor-dashboard';
static const String scheduleConsultationScreen = '/doctor-Schedule';
static const String doctorLandingScreen = '/doctor-Landing';
static const String businessCenterScreen = '/doctor-centers';
static const String centerFeeAndDuration = '/doctor-center-fee-and-duration';
static const String doctorHomeScreen = '/doctor-home-screen';
static const String doctorPersonalProfileScreen =
'/doctor-personal-profile-screen';
static const String doctorServicesMenuScreen = '/doctor-services-menu';
static const String consultationTimeSlotScreen = '/doctor-timeslot';
static const String consultationDayScreen = '/doctor-consultation-days';
static const String loadingScreen = '/loading-screen';
static const String splashScreen = '/splash-screen';
}