update home ui

This commit is contained in:
efrilm
2026-05-12 15:47:38 +07:00
parent 86d581f5ea
commit 9076c9c66e
16 changed files with 442 additions and 95 deletions
@@ -11,6 +11,34 @@
import 'package:flutter/widgets.dart';
class $AssetsIconsGen {
const $AssetsIconsGen();
/// File path: assets/icons/ic-report-product.png
AssetGenImage get icReportProduct =>
const AssetGenImage('assets/icons/ic-report-product.png');
/// File path: assets/icons/ic-report-profit-loss.png
AssetGenImage get icReportProfitLoss =>
const AssetGenImage('assets/icons/ic-report-profit-loss.png');
/// File path: assets/icons/ic-report-purchase.png
AssetGenImage get icReportPurchase =>
const AssetGenImage('assets/icons/ic-report-purchase.png');
/// File path: assets/icons/ic-report-sales.png
AssetGenImage get icReportSales =>
const AssetGenImage('assets/icons/ic-report-sales.png');
/// List of all assets
List<AssetGenImage> get values => [
icReportProduct,
icReportProfitLoss,
icReportPurchase,
icReportSales,
];
}
class $AssetsImagesGen {
const $AssetsImagesGen();
@@ -28,6 +56,7 @@ class $AssetsImagesGen {
class Assets {
const Assets._();
static const $AssetsIconsGen icons = $AssetsIconsGen();
static const $AssetsImagesGen images = $AssetsImagesGen();
}