33 lines
1.0 KiB
Dart
33 lines
1.0 KiB
Dart
part of 'app_pages.dart';
|
|
|
|
abstract class AppRoutes {
|
|
static const splashScreen = "/splashscreen";
|
|
static const loginPage = "/login";
|
|
static const registerPage = "/register";
|
|
static const homePage = '/home';
|
|
|
|
static const mainPage = '/main';
|
|
|
|
static const quizCreatePage = "/quiz/creation";
|
|
static const quizPreviewPage = "/quiz/preview";
|
|
static const listingQuizPage = "/quiz/listing";
|
|
static const detailQuizPage = "/quiz/detail";
|
|
|
|
static const playQuizPage = "/quiz/play";
|
|
static const resultQuizPage = "/quiz/result";
|
|
|
|
static const detailHistoryPage = "/history/detail";
|
|
|
|
static const roomPage = "/room/quiz";
|
|
static const joinRoomPage = "/room/quiz/join";
|
|
static const waitRoomPage = "/room/quiz/waiting";
|
|
|
|
static const playQuizMPLPage = "/room/quiz/play";
|
|
static const monitorQuizMPLPage = "/room/quiz/monitor";
|
|
static const monitorResultMPLPage = "/room/quiz/monitor/result";
|
|
|
|
static const updateProfilePage = "/profile/update";
|
|
|
|
static const quizMPLResultPage = "/room/quiz/result";
|
|
}
|