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

16 lines
344 B
Dart

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';
var routes = {
HOME:(_)=>HomeScreen(),
INIT_ROUTE:(_)=>Loginsreen(),
MY_SCHEDULE:(_)=>MyScheduleScreen()
};