TIF_E41211115_Genso_quiz_app/lib/app/routes/app_routes.dart

13 lines
305 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";
}