TIF_E41211115_Genso_quiz_app/lib/app/routes/app_routes.dart

9 lines
218 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';
}