feat:resetting password done
This commit is contained in:
@@ -56,4 +56,7 @@ abstract class AppColors {
|
||||
static const Color c151B33 = Color(0xFF151B33);
|
||||
static const Color cE5E7EB = Color(0xFFE5E7EB);
|
||||
static const Color cE2E8F0 = Color(0xFFE2E8F0);
|
||||
static const Color cDFE2EB = Color(0xFFDFE2EB);
|
||||
static const Color c9FB6FA = Color(0xFF9FB6FA);
|
||||
|
||||
}
|
||||
|
||||
@@ -13,6 +13,8 @@ abstract class AppIcons {
|
||||
static const String icCart1 = "$baseUrl/ic_cart1.svg";
|
||||
static const String icTransactions = "$baseUrl/ic_transactions.svg";
|
||||
static const String icProfile = "$baseUrl/ic_profile.svg";
|
||||
static const String icClock = "$baseUrl/ic_clock.svg";
|
||||
|
||||
}
|
||||
|
||||
abstract class AppLightSvgs {
|
||||
|
||||
@@ -10,6 +10,7 @@ class AppThemeColors extends ThemeExtension<AppThemeColors> {
|
||||
final Color inActiveColor;
|
||||
final Color inActiveColor1;
|
||||
final Color inActiveColor2;
|
||||
final Color rippleColor;
|
||||
|
||||
AppThemeColors({
|
||||
required this.onBoardingColor,
|
||||
@@ -20,6 +21,7 @@ class AppThemeColors extends ThemeExtension<AppThemeColors> {
|
||||
required this.inActiveColor,
|
||||
required this.inActiveColor1,
|
||||
required this.inActiveColor2,
|
||||
required this.rippleColor,
|
||||
});
|
||||
|
||||
static AppThemeColors light = AppThemeColors(
|
||||
@@ -31,6 +33,7 @@ class AppThemeColors extends ThemeExtension<AppThemeColors> {
|
||||
inActiveColor: AppColors.cE2E4EA,
|
||||
inActiveColor1: AppColors.cA9A9A9,
|
||||
inActiveColor2: AppColors.cE5E7EB,
|
||||
rippleColor: AppColors.c9FB6FA,
|
||||
);
|
||||
|
||||
static AppThemeColors dark = AppThemeColors(
|
||||
@@ -42,6 +45,7 @@ class AppThemeColors extends ThemeExtension<AppThemeColors> {
|
||||
inActiveColor: AppColors.c292F3D,
|
||||
inActiveColor1: AppColors.c626262,
|
||||
inActiveColor2: AppColors.c292F3D,
|
||||
rippleColor: AppColors.cFF6F00,
|
||||
);
|
||||
|
||||
@override
|
||||
@@ -54,6 +58,7 @@ class AppThemeColors extends ThemeExtension<AppThemeColors> {
|
||||
Color? inActiveColor,
|
||||
Color? inActiveColor1,
|
||||
Color? inActiveColor2,
|
||||
Color? rippleColor,
|
||||
}) {
|
||||
return AppThemeColors(
|
||||
onBoardingColor: onBoardingColor ?? this.onBoardingColor,
|
||||
@@ -64,6 +69,7 @@ class AppThemeColors extends ThemeExtension<AppThemeColors> {
|
||||
inActiveColor: inActiveColor ?? this.inActiveColor,
|
||||
inActiveColor1: inActiveColor1 ?? this.inActiveColor1,
|
||||
inActiveColor2: inActiveColor2 ?? this.inActiveColor2,
|
||||
rippleColor: rippleColor ?? this.rippleColor,
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user