ambil data stok bantuan
This commit is contained in:
@ -10,15 +10,24 @@ import 'package:penyaluran_app/app/modules/petugas_desa/views/konfirmasi_penerim
|
||||
import 'package:penyaluran_app/app/modules/petugas_desa/views/pelaksanaan_penyaluran_view.dart';
|
||||
|
||||
import 'package:penyaluran_app/app/modules/petugas_desa/bindings/penerima_binding.dart';
|
||||
import 'package:penyaluran_app/app/modules/profile/bindings/profile_binding.dart';
|
||||
import 'package:penyaluran_app/app/modules/profile/views/profile_view.dart';
|
||||
import 'package:penyaluran_app/app/modules/splash/bindings/splash_binding.dart';
|
||||
import 'package:penyaluran_app/app/modules/splash/views/splash_view.dart';
|
||||
|
||||
part 'app_routes.dart';
|
||||
|
||||
class AppPages {
|
||||
AppPages._();
|
||||
|
||||
static const initial = Routes.login;
|
||||
static const initial = Routes.splash;
|
||||
|
||||
static final routes = [
|
||||
GetPage(
|
||||
name: _Paths.splash,
|
||||
page: () => const SplashView(),
|
||||
binding: SplashBinding(),
|
||||
),
|
||||
GetPage(
|
||||
name: _Paths.login,
|
||||
page: () => const LoginView(),
|
||||
@ -54,5 +63,10 @@ class AppPages {
|
||||
page: () => const PelaksanaanPenyaluranView(),
|
||||
binding: PetugasDesaBinding(),
|
||||
),
|
||||
GetPage(
|
||||
name: _Paths.profile,
|
||||
page: () => const ProfileView(),
|
||||
binding: ProfileBinding(),
|
||||
),
|
||||
];
|
||||
}
|
||||
|
@ -15,6 +15,7 @@ abstract class Routes {
|
||||
static const detailPenerima = _Paths.detailPenerima;
|
||||
static const konfirmasiPenerima = _Paths.konfirmasiPenerima;
|
||||
static const pelaksanaanPenyaluran = _Paths.pelaksanaanPenyaluran;
|
||||
static const profile = _Paths.profile;
|
||||
}
|
||||
|
||||
abstract class _Paths {
|
||||
@ -32,4 +33,5 @@ abstract class _Paths {
|
||||
static const detailPenerima = '/daftar-penerima/detail';
|
||||
static const konfirmasiPenerima = '/daftar-penerima/konfirmasi';
|
||||
static const pelaksanaanPenyaluran = '/pelaksanaan-penyaluran';
|
||||
static const profile = '/profile';
|
||||
}
|
||||
|
Reference in New Issue
Block a user