35 lines
1.3 KiB
Dart
35 lines
1.3 KiB
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 HOME = _Paths.HOME;
|
|
static const SPLASHSCREEN = _Paths.SPLASHSCREEN;
|
|
static const LOGIN = _Paths.LOGIN;
|
|
static const SIGNUP = _Paths.SIGNUP;
|
|
static const NOTIFIKASI = _Paths.NOTIFIKASI;
|
|
static const CEK_KARTU = _Paths.CEK_KARTU;
|
|
static const DAFTAR_KARTU = _Paths.DAFTAR_KARTU;
|
|
static const HOME_ADMIN = _Paths.HOME_ADMIN;
|
|
static const PERSETUJUAN_KARTU = _Paths.PERSETUJUAN_KARTU;
|
|
static const KARTU_TERDAFTAR = _Paths.KARTU_TERDAFTAR;
|
|
static const LOGIN_ADMIN = _Paths.LOGIN_ADMIN;
|
|
static const HISTORY_PARKIR = _Paths.HISTORY_PARKIR;
|
|
}
|
|
|
|
abstract class _Paths {
|
|
_Paths._();
|
|
static const HOME = '/home';
|
|
static const SPLASHSCREEN = '/splashscreen';
|
|
static const LOGIN = '/login';
|
|
static const SIGNUP = '/signup';
|
|
static const NOTIFIKASI = '/notifikasi';
|
|
static const CEK_KARTU = '/cek-kartu';
|
|
static const DAFTAR_KARTU = '/daftar-kartu';
|
|
static const HOME_ADMIN = '/home-admin';
|
|
static const PERSETUJUAN_KARTU = '/persetujuan-kartu';
|
|
static const KARTU_TERDAFTAR = '/kartu-terdaftar';
|
|
static const LOGIN_ADMIN = '/login-admin';
|
|
static const HISTORY_PARKIR = '/history-parkir';
|
|
}
|