feat: Add localization for staff main tabs and enhance profile UI components

This commit is contained in:
Achintha Isuru
2026-01-24 14:38:06 -05:00
parent 6c72c2d9fd
commit 96ab07b58d
8 changed files with 91 additions and 39 deletions

View File

@@ -75,35 +75,35 @@ class StaffMainBottomBar extends StatelessWidget {
_buildNavItem(
index: 0,
icon: UiIcons.briefcase,
label: t.staff_main.tabs.shifts,
label: t.staff.main.tabs.shifts,
activeColor: activeColor,
inactiveColor: inactiveColor,
),
_buildNavItem(
index: 1,
icon: UiIcons.dollar,
label: t.staff_main.tabs.payments,
label: t.staff.main.tabs.payments,
activeColor: activeColor,
inactiveColor: inactiveColor,
),
_buildNavItem(
index: 2,
icon: UiIcons.home,
label: t.staff_main.tabs.home,
label: t.staff.main.tabs.home,
activeColor: activeColor,
inactiveColor: inactiveColor,
),
_buildNavItem(
index: 3,
icon: UiIcons.clock,
label: t.staff_main.tabs.clock_in,
label: t.staff.main.tabs.clock_in,
activeColor: activeColor,
inactiveColor: inactiveColor,
),
_buildNavItem(
index: 4,
icon: UiIcons.users,
label: t.staff_main.tabs.profile,
label: t.staff.main.tabs.profile,
activeColor: activeColor,
inactiveColor: inactiveColor,
),