TKK_E32220429/lib/app/routes/app_routes.dart

21 lines
530 B
Dart

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 START = _Paths.START;
static const HOME = _Paths.HOME;
static const MAPS = _Paths.MAPS;
static const ABOUT = _Paths.ABOUT;
static const SETTING = _Paths.SETTING;
}
abstract class _Paths {
_Paths._();
static const START = '/start';
static const HOME = '/home';
static const MAPS = '/maps';
static const ABOUT = '/about';
static const SETTING = '/setting';
}