feature(training): Добавлен состояния загрузки, пустоты и наличие данных на экране тренировки

This commit is contained in:
2025-06-17 22:27:22 +03:00
parent 0842c479c7
commit 285c4ca3f2
17 changed files with 1098 additions and 65 deletions

View File

@@ -410,6 +410,10 @@ class $AssetsImagesGen {
/// File path: assets/images/quote.png
AssetGenImage get quote => const AssetGenImage('assets/images/quote.png');
/// File path: assets/images/training_empty.png
AssetGenImage get trainingEmpty =>
const AssetGenImage('assets/images/training_empty.png');
/// List of all assets
List<dynamic> get values => [
aGitkeep,
@@ -427,6 +431,7 @@ class $AssetsImagesGen {
logo,
noData,
quote,
trainingEmpty,
];
}