update notification

This commit is contained in:
Efril
2026-05-12 01:54:24 +07:00
parent 3985611a0e
commit 9b6e9c591d
13 changed files with 232 additions and 47 deletions
@@ -62,36 +62,36 @@ class HomeFeature extends StatelessWidget {
),
],
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
HomeFeatureTile(
title: context.lang.form,
color: const Color(0xFFE91E63),
icon: LineIcons.fileAlt,
onTap: () => context.router.push(DailyTasksFormRoute()),
),
HomeFeatureTile(
title: context.lang.schedule,
color: const Color(0xFF9C27B0),
icon: LineIcons.calendar,
onTap: () => context.router.push(ScheduleRoute()),
),
HomeFeatureTile(
title: context.lang.inventory,
color: const Color(0xFF00BCD4),
icon: LineIcons.archive,
onTap: () => context.router.push(InventoryRoute()),
),
HomeFeatureTile(
title: context.lang.customer,
color: const Color(0xFFFF5722),
icon: LineIcons.userPlus,
onTap: () => context.router.push(CustomerRoute()),
),
],
),
// Row(
// mainAxisAlignment: MainAxisAlignment.spaceAround,
// crossAxisAlignment: CrossAxisAlignment.start,
// children: [
// HomeFeatureTile(
// title: context.lang.form,
// color: const Color(0xFFE91E63),
// icon: LineIcons.fileAlt,
// onTap: () => context.router.push(DailyTasksFormRoute()),
// ),
// HomeFeatureTile(
// title: context.lang.schedule,
// color: const Color(0xFF9C27B0),
// icon: LineIcons.calendar,
// onTap: () => context.router.push(ScheduleRoute()),
// ),
// HomeFeatureTile(
// title: context.lang.inventory,
// color: const Color(0xFF00BCD4),
// icon: LineIcons.archive,
// onTap: () => context.router.push(InventoryRoute()),
// ),
// HomeFeatureTile(
// title: context.lang.customer,
// color: const Color(0xFFFF5722),
// icon: LineIcons.userPlus,
// onTap: () => context.router.push(CustomerRoute()),
// ),
// ],
// ),
],
),
);