feat: actions and map page

This commit is contained in:
2025-05-21 14:43:26 +03:30
parent b5406a00a0
commit 1ed8e69262
19 changed files with 586 additions and 33 deletions

View File

@@ -107,6 +107,15 @@ class AppFonts {
height: _height,
);
static const TextStyle yekan8= TextStyle(
// Rounded from 10.24
fontFamily: yekan,
fontWeight: regular,
fontSize: 8,
height: _height,
);
static const TextStyle yekan61Bold = TextStyle(
fontFamily: yekan,
fontWeight: bold, // Use bold weight

View File

@@ -99,6 +99,9 @@ class $AssetsIconsGen {
/// File path: assets/icons/scan_barcode.svg
SvgGenImage get scanBarcode => const SvgGenImage('assets/icons/scan_barcode.svg');
/// File path: assets/icons/search.svg
SvgGenImage get search => const SvgGenImage('assets/icons/search.svg');
/// File path: assets/icons/security_time.svg
SvgGenImage get securityTime => const SvgGenImage('assets/icons/security_time.svg');
@@ -147,6 +150,7 @@ class $AssetsIconsGen {
receiptDiscount,
scan,
scanBarcode,
search,
securityTime,
setting,
tagUser,
@@ -256,6 +260,9 @@ class $AssetsVecGen {
/// File path: assets/vec/scan_barcode.svg.vec
SvgGenImage get scanBarcodeSvg => const SvgGenImage.vec('assets/vec/scan_barcode.svg.vec');
/// File path: assets/vec/search.svg.vec
SvgGenImage get searchSvg => const SvgGenImage.vec('assets/vec/search.svg.vec');
/// File path: assets/vec/security_time.svg.vec
SvgGenImage get securityTimeSvg => const SvgGenImage.vec('assets/vec/security_time.svg.vec');
@@ -304,6 +311,7 @@ class $AssetsVecGen {
receiptDiscountSvg,
scanSvg,
scanBarcodeSvg,
searchSvg,
securityTimeSvg,
settingSvg,
tagUserSvg,