18 lines
449 B
Dart
18 lines
449 B
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 detailQuizPage = "/quiz/detail";
|
|
|
|
static const playQuizPage = "/quiz/play";
|
|
}
|