fix : title and pic home widget

This commit is contained in:
2025-09-20 12:25:10 +03:30
parent d1783ae14d
commit 0855489952
5 changed files with 32 additions and 20 deletions

View File

@@ -430,6 +430,9 @@ class $AssetsImagesGen {
/// File path: assets/images/inner_splash.webp
AssetGenImage get innerSplash => const AssetGenImage('assets/images/inner_splash.webp');
/// File path: assets/images/live_chicken.jpg
AssetGenImage get liveChicken => const AssetGenImage('assets/images/live_chicken.jpg');
/// File path: assets/images/outter_splash.webp
AssetGenImage get outterSplash => const AssetGenImage('assets/images/outter_splash.webp');
@@ -443,7 +446,15 @@ class $AssetsImagesGen {
AssetGenImage get selectRole => const AssetGenImage('assets/images/select_role.webp');
/// List of all assets
List<AssetGenImage> get values => [chicken, innerSplash, outterSplash, placeHolder, poultryAction, selectRole];
List<AssetGenImage> get values => [
chicken,
innerSplash,
liveChicken,
outterSplash,
placeHolder,
poultryAction,
selectRole,
];
}
class $AssetsLogosGen {