update notification
This commit is contained in:
@@ -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()),
|
||||
// ),
|
||||
// ],
|
||||
// ),
|
||||
],
|
||||
),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user