added your tenders screen

This commit is contained in:
amirrezaghabeli
2025-08-05 19:18:47 +03:30
parent 9f6c458e15
commit 21d13ac072
24 changed files with 682 additions and 63 deletions
+6
View File
@@ -1,6 +1,9 @@
class AssetsManager {
AssetsManager._();
//bottom navigation
static const homeActive = 'assets/icons/home_active.svg';
// login page
static const logo = 'assets/pngs/logo.png';
static const userIcon = 'assets/svgs/user_icon.svg';
@@ -17,4 +20,7 @@ class AssetsManager {
static const location = 'assets/icons/location.svg';
static const arrowCircleLeft = 'assets/icons/arrow-circle-left.svg';
static const arrowCircleRight = 'assets/icons/arrow-circle-right.svg';
//your tenders page
static const tickCircle = 'assets/icons/tick-circle.svg';
}
+13 -2
View File
@@ -8,8 +8,8 @@ class AppColors {
static const Color accentColor = Color(0xFFE83E8C);
// Backgrounds
static const Color lightBackgroundColor = Color(0xFFF8F9FA);
static const Color darkBackgroundColor = Color(0xFF343A40);
static const Color lightBackgroundColor = Color(0xFFFFFFFF);
static const Color darkBackgroundColor = Color(0xFF222222);
// Text Colors
static const Color primaryTextColor = Color(0xFF212529);
@@ -22,6 +22,8 @@ class AppColors {
static const Color warningColor = Color(0xFFFFC107);
static const Color grey = Color(0xFF555555);
static const Color grey20 = Color(0xFFE4E4E4);
static const Color grey40 = Color(0xFFDADADA);
static const Color grey50 = Color(0xFF9E9E9E);
static const Color grey60 = Color(0xFF777777);
static const Color grey70 = Color(0xFF444444);
@@ -31,4 +33,13 @@ class AppColors {
static const Color backgroundColor = Color(0xFFFFFFFF);
static const Color borderColor = Color(0xFFE1E1E1);
static const Color primary2 = Color(0xFFE5EFFF);
static const Color dividerColor = Color(0xFFE1E1E1);
static const Color gren0 = Color(0xFFF9FCF8);
static const Color green10 = Color(0xFFE0F0DC);
static const Color gren20 = Color(0xFFDAF8D6);
static const Color gren30 = Color(0xFF289744);
static const Color red0 = Color(0xFFF8D6D6);
static const Color red10 = Color(0xFFC02525);
}
+6
View File
@@ -35,4 +35,10 @@ class AppStrings {
//Tenders
static const String tendersTitle = 'Tenders';
//profile
static const String profile = 'Profile';
//your tenders
static const String yourTendersTitle = 'Your tenders';
}