You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
doctor_app_flutter/lib/routes.dart

21 lines
520 B
Dart

import './screens/patient_search_screen.dart';
6 years ago
import './screens/my_schedule_screen.dart';
import './screens/auth/login_screen.dart';
import './screens/home_screen.dart';
const String INIT_ROUTE = 'login';
const String HOME = '/';
const String MY_SCHEDULE = 'my-schedule';
const String QR_READER = 'my-schedule';
const String PATIENT_SEARCH = 'patient-search';
6 years ago
var routes = {
HOME:(_)=>HomeScreen(),
INIT_ROUTE:(_)=>Loginsreen(),
MY_SCHEDULE:(_)=>MyScheduleScreen(),
PATIENT_SEARCH:(_)=>PatientSearch(),
6 years ago
};