Add Daily Task Planning navigation item to the left bar
This commit is contained in:
parent
6db47cce88
commit
6cb8cc8486
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user