feat: Implement bank account management feature with UI, BLoC integration, and repository setup

This commit is contained in:
Achintha Isuru
2026-01-24 22:36:29 -05:00
parent f035ab8b6c
commit e6e2783a5a
25 changed files with 766 additions and 9 deletions

View File

@@ -58,7 +58,7 @@ extension ProfileNavigator on IModularNavigator {
/// Navigates to the bank account page.
void pushBankAccount() {
pushNamed('/bank-account');
pushNamed('../bank-account');
}
/// Navigates to the timecard page.

View File

@@ -186,7 +186,7 @@ class StaffProfilePage extends StatelessWidget {
ProfileMenuItem(
icon: UiIcons.creditCard,
label: i18n.menu_items.payments,
onTap: () => Modular.to.navigate('/payments'),
onTap: () => Modular.to.navigate('/worker-main/payments'),
),
ProfileMenuItem(
icon: UiIcons.clock,