dreampad/lib/app/routes/app_routes.dart
2023-11-28 10:45:09 +08:00

27 lines
781 B
Dart

// ignore_for_file: constant_identifier_names
part of 'app_pages.dart';
// DO NOT EDIT. This is code generated via package:get_cli/get_cli.dart
abstract class Routes {
Routes._();
static const HOME = _Paths.HOME;
static const SPLASH = _Paths.SPLASH;
static const WELCOME = _Paths.WELCOME;
static const SELECT = _Paths.SELECT;
static const QUESTION = _Paths.QUESTION;
static const EXPLORE = _Paths.EXPLORE;
static const EXPLORE_STUDY = _Paths.EXPLORE_STUDY;
}
abstract class _Paths {
_Paths._();
static const HOME = '/home';
static const SPLASH = '/splash';
static const WELCOME = '/welcome';
static const SELECT = '/select';
static const QUESTION = '/question';
static const EXPLORE = '/explore';
static const EXPLORE_STUDY = '/explore_study';
}