feat: remove reports tab from the bottom navigation bar in ClientMainBottomBar

This commit is contained in:
Achintha Isuru
2026-01-29 14:24:27 -05:00
parent 976d101f79
commit 38056c9d91
2 changed files with 1 additions and 8 deletions

View File

@@ -30,7 +30,7 @@ class ClientMainPage extends StatelessWidget {
BlocProvider.of<ClientMainCubit>(context).navigateToTab(index); BlocProvider.of<ClientMainCubit>(context).navigateToTab(index);
}, },
); );
}, },
), ),
), ),
); );

View File

@@ -99,13 +99,6 @@ class ClientMainBottomBar extends StatelessWidget {
activeColor: activeColor, activeColor: activeColor,
inactiveColor: inactiveColor, inactiveColor: inactiveColor,
), ),
_buildNavItem(
index: 4,
icon: UiIcons.chart,
label: t.client_main.tabs.reports,
activeColor: activeColor,
inactiveColor: inactiveColor,
),
], ],
), ),
), ),