Add Daily Task Planning navigation item to the left bar #32

Merged
vikas.nale merged 1 commits from Vaibhav_Task-#323 into main 2025-05-23 05:38:35 +00:00
Showing only changes of commit 6cb8cc8486 - Show all commits

View File

@ -129,6 +129,11 @@ class _LeftBarState extends State<LeftBar>
title: "Daily Progress Report",
isCondensed: isCondensed,
route: '/dashboard/daily-task'),
NavigationItem(
iconData: LucideIcons.list_todo,
title: "Daily Task Planing",
isCondensed: isCondensed,
route: '/dashboard/daily-task-planing'),
],
),
),
@ -143,7 +148,9 @@ class _LeftBarState extends State<LeftBar>
Widget userInfoSection() {
if (employeeInfo == null) {
return Center(child: CircularProgressIndicator()); // Show loading indicator if employeeInfo is not yet loaded.
return Center(
child:
CircularProgressIndicator()); // Show loading indicator if employeeInfo is not yet loaded.
}
return Padding(
@ -180,7 +187,7 @@ class _LeftBarState extends State<LeftBar>
],
),
);
}
}
Widget labelWidget(String label) {
return isCondensed