fix :
1 - labelIcon Farm -> poultry science chore : remove duplicate svg -> core
This commit is contained in:
@@ -14,7 +14,7 @@ class FarmPage extends GetView<FarmLogic> {
|
||||
routes: controller.routes,
|
||||
hasFilter: false,
|
||||
hasSearch: false,
|
||||
onBackPressed: () => Get.back(id:0),
|
||||
onBackPressed: () => Get.back(id: 0),
|
||||
widgets: [firstTagInformation(), farmListWidget()],
|
||||
);
|
||||
}
|
||||
@@ -55,7 +55,7 @@ class FarmPage extends GetView<FarmLogic> {
|
||||
child: itemListWidget(item),
|
||||
secondChild: itemListExpandedWidget(item),
|
||||
labelColor: AppColor.blueLight,
|
||||
labelIcon: Assets.vec.checkSquareSvg.path,
|
||||
labelIcon: Assets.vec.cubeScanSvg.path,
|
||||
);
|
||||
}, controller.isExpandedList);
|
||||
},
|
||||
|
||||
@@ -255,7 +255,7 @@ class PoultryScienceHomePage extends GetView<PoultryScienceHomeLogic> {
|
||||
),
|
||||
widelyUsed(
|
||||
title: 'فارم ها',
|
||||
iconPath: Assets.vec.a3dCubeSquareSvg.path,
|
||||
iconPath: Assets.vec.cubeSvg.path,
|
||||
isOnEdit: false,
|
||||
onTap: () async {
|
||||
controller.rootLogic.currentPage.value = 1;
|
||||
|
||||
@@ -225,7 +225,7 @@ class HomePage extends GetView<HomeLogic> {
|
||||
(data.value?.provinceFreeCarcassesWeight ?? 0))
|
||||
.separatedByComma
|
||||
: '0',
|
||||
iconPath: Assets.vec.a3dCubeSquareSvg.path,
|
||||
iconPath: Assets.vec.cubeSvg.path,
|
||||
iconColor: const Color(0xFF6C5D60),
|
||||
bgDescriptionColor: const Color(0xFFEDDCE0),
|
||||
bgLabelColor: const Color(0xFFDDC0C7),
|
||||
|
||||
@@ -32,9 +32,6 @@ class $AssetsAnimGen {
|
||||
class $AssetsIconsGen {
|
||||
const $AssetsIconsGen();
|
||||
|
||||
/// File path: assets/icons/3d_cube_square.svg
|
||||
SvgGenImage get a3dCubeSquare => const SvgGenImage('assets/icons/3d_cube_square.svg');
|
||||
|
||||
/// File path: assets/icons/add.svg
|
||||
SvgGenImage get add => const SvgGenImage('assets/icons/add.svg');
|
||||
|
||||
@@ -125,6 +122,9 @@ class $AssetsIconsGen {
|
||||
/// File path: assets/icons/cube_scan.svg
|
||||
SvgGenImage get cubeScan => const SvgGenImage('assets/icons/cube_scan.svg');
|
||||
|
||||
/// File path: assets/icons/cube_scan_with_label.svg
|
||||
SvgGenImage get cubeScanWithLabel => const SvgGenImage('assets/icons/cube_scan_with_label.svg');
|
||||
|
||||
/// File path: assets/icons/cube_search.svg
|
||||
SvgGenImage get cubeSearch => const SvgGenImage('assets/icons/cube_search.svg');
|
||||
|
||||
@@ -322,7 +322,6 @@ class $AssetsIconsGen {
|
||||
|
||||
/// List of all assets
|
||||
List<SvgGenImage> get values => [
|
||||
a3dCubeSquare,
|
||||
add,
|
||||
appBarInspection,
|
||||
arrowLeft,
|
||||
@@ -353,6 +352,7 @@ class $AssetsIconsGen {
|
||||
cubeCard,
|
||||
cubeRotate,
|
||||
cubeScan,
|
||||
cubeScanWithLabel,
|
||||
cubeSearch,
|
||||
cubeTopRotation,
|
||||
cubeWatting,
|
||||
@@ -469,9 +469,6 @@ class $AssetsRiveGen {
|
||||
class $AssetsVecGen {
|
||||
const $AssetsVecGen();
|
||||
|
||||
/// File path: assets/vec/3d_cube_square.svg.vec
|
||||
SvgGenImage get a3dCubeSquareSvg => const SvgGenImage.vec('assets/vec/3d_cube_square.svg.vec');
|
||||
|
||||
/// File path: assets/vec/add.svg.vec
|
||||
SvgGenImage get addSvg => const SvgGenImage.vec('assets/vec/add.svg.vec');
|
||||
|
||||
@@ -562,6 +559,9 @@ class $AssetsVecGen {
|
||||
/// File path: assets/vec/cube_scan.svg.vec
|
||||
SvgGenImage get cubeScanSvg => const SvgGenImage.vec('assets/vec/cube_scan.svg.vec');
|
||||
|
||||
/// File path: assets/vec/cube_scan_with_label.svg.vec
|
||||
SvgGenImage get cubeScanWithLabelSvg => const SvgGenImage.vec('assets/vec/cube_scan_with_label.svg.vec');
|
||||
|
||||
/// File path: assets/vec/cube_search.svg.vec
|
||||
SvgGenImage get cubeSearchSvg => const SvgGenImage.vec('assets/vec/cube_search.svg.vec');
|
||||
|
||||
@@ -759,7 +759,6 @@ class $AssetsVecGen {
|
||||
|
||||
/// List of all assets
|
||||
List<SvgGenImage> get values => [
|
||||
a3dCubeSquareSvg,
|
||||
addSvg,
|
||||
appBarInspectionSvg,
|
||||
arrowLeftSvg,
|
||||
@@ -790,6 +789,7 @@ class $AssetsVecGen {
|
||||
cubeCardSvg,
|
||||
cubeRotateSvg,
|
||||
cubeScanSvg,
|
||||
cubeScanWithLabelSvg,
|
||||
cubeSearchSvg,
|
||||
cubeTopRotationSvg,
|
||||
cubeWattingSvg,
|
||||
|
||||
Reference in New Issue
Block a user