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.
diplomatic-quarter/lib/routes.dart

16 lines
459 B
Dart

import 'package:diplomaticquarterapp/pages/landing_page.dart';
import 'package:diplomaticquarterapp/pages/login/welcome.dart';
const String INIT_ROUTE = '/';
const String ROOT = 'root';
const String HOME = '/';
const String LOGIN = 'login';
const String WELCOME_LOGIN = 'welcome-login';
var routes = {
// ROOT: (_) => RootPage(),
HOME: (_) => LandingPage(),
WELCOME_LOGIN: (_) => WelcomeLogin(),
// LIVECARE_END_DIALOG: (_) => EndCallDialogBox()
};