feat : buyer in sale out of the province

This commit is contained in:
2025-06-23 16:49:12 +03:30
parent 1e3614ed58
commit 078fe9a022
13 changed files with 2268 additions and 198 deletions

View File

@@ -41,20 +41,23 @@ class OutOfProvincePage extends GetView<OutOfProvinceLogic> {
children: [
Expanded(
child: _typeOuterInfoCard(
title: 'خرید خارج استان',
title: 'خرید',
iconPath: Assets.vec.cubeBottomRotationSvg.path,
foregroundColor: AppColor.blueNormal,
onTap: () {
Get.toNamed(ChickenRoutes.salesOutOfProvince,id:1);
Get.toNamed(ChickenRoutes.buysOutOfProvince, id: 1);
},
),
),
Expanded(
child: _typeOuterInfoCard(
title: 'فروش خارج استان',
title: 'فروش',
iconPath: Assets.vec.cubeTopRotationSvg.path,
foregroundColor: AppColor.greenDark,
onTap: () {},
onTap: () {
iLog('فروش');
Get.toNamed(ChickenRoutes.salesOutOfProvince, id: 1);
},
),
),
],