added notifications and change in forgot password

This commit is contained in:
amirrezaghabeli
2025-09-02 10:16:37 +03:30
parent 865d166a59
commit 22d1f03b6e
18 changed files with 397 additions and 17 deletions
+9 -1
View File
@@ -114,6 +114,9 @@ class $AssetsIconsGen {
/// File path: assets/icons/tick.svg
String get tick => 'assets/icons/tick.svg';
/// File path: assets/icons/trailing_icon.svg
String get trailingIcon => 'assets/icons/trailing_icon.svg';
/// List of all assets
List<dynamic> get values => [
se,
@@ -149,12 +152,17 @@ class $AssetsIconsGen {
thumbLike,
tickCircle,
tick,
trailingIcon,
];
}
class $AssetsPngsGen {
const $AssetsPngsGen();
/// File path: assets/pngs/forgot_password.png
AssetGenImage get forgotPassword =>
const AssetGenImage('assets/pngs/forgot_password.png');
/// File path: assets/pngs/logo.png
AssetGenImage get logo => const AssetGenImage('assets/pngs/logo.png');
@@ -163,7 +171,7 @@ class $AssetsPngsGen {
const AssetGenImage('assets/pngs/web_login_image.png');
/// List of all assets
List<AssetGenImage> get values => [logo, webLoginImage];
List<AssetGenImage> get values => [forgotPassword, logo, webLoginImage];
}
class $AssetsSvgsGen {