ambil data stok bantuan

This commit is contained in:
Khafidh Fuadi
2025-03-11 12:44:32 +07:00
parent d24832ea82
commit eec06ba79d
57 changed files with 4306 additions and 1590 deletions

View File

@ -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(),
),
];
}

View File

@ -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';
}