Added logic to YourTenders

This commit is contained in:
llsajjad
2025-08-11 15:52:13 +03:30
parent 79ea6f7b83
commit d10e0459ae
25 changed files with 1958 additions and 838 deletions
+21 -1
View File
@@ -35,6 +35,9 @@ class $AssetsIconsGen {
/// File path: assets/icons/arrows.svg
String get arrows => 'assets/icons/arrows.svg';
/// File path: assets/icons/calendar.svg
String get calendar => 'assets/icons/calendar.svg';
/// File path: assets/icons/close-circle.svg
String get closeCircle => 'assets/icons/close-circle.svg';
@@ -56,6 +59,12 @@ class $AssetsIconsGen {
/// File path: assets/icons/location.svg
String get location => 'assets/icons/location.svg';
/// File path: assets/icons/menu.svg
String get menu => 'assets/icons/menu.svg';
/// File path: assets/icons/notification.svg
String get notification => 'assets/icons/notification.svg';
/// File path: assets/icons/profile-circle.svg
String get profileCircle => 'assets/icons/profile-circle.svg';
@@ -84,6 +93,9 @@ class $AssetsIconsGen {
/// File path: assets/icons/tick-circle.svg
String get tickCircle => 'assets/icons/tick-circle.svg';
/// File path: assets/icons/tick.svg
String get tick => 'assets/icons/tick.svg';
/// List of all assets
List<dynamic> get values => [
se,
@@ -93,6 +105,7 @@ class $AssetsIconsGen {
arrowRightSmall,
arrowRight,
arrows,
calendar,
closeCircle,
dislike,
edit,
@@ -100,6 +113,8 @@ class $AssetsIconsGen {
homeActive,
like,
location,
menu,
notification,
profileCircle,
profileCircleActive,
shield,
@@ -109,6 +124,7 @@ class $AssetsIconsGen {
tenderLogoSvg,
thumb,
tickCircle,
tick,
];
}
@@ -118,8 +134,12 @@ class $AssetsPngsGen {
/// File path: assets/pngs/logo.png
AssetGenImage get logo => const AssetGenImage('assets/pngs/logo.png');
/// File path: assets/pngs/web_login_image.png
AssetGenImage get webLoginImage =>
const AssetGenImage('assets/pngs/web_login_image.png');
/// List of all assets
List<AssetGenImage> get values => [logo];
List<AssetGenImage> get values => [logo, webLoginImage];
}
class $AssetsSvgsGen {