Added User Profile Screen

This commit is contained in:
2026-02-18 21:42:48 +08:00
parent 35eae623d8
commit 372928d8e7
6 changed files with 606 additions and 5 deletions
+5
View File
@@ -12,6 +12,7 @@ import '../screens/admin/offices_screen.dart';
import '../screens/admin/user_management_screen.dart';
import '../screens/dashboard/dashboard_screen.dart';
import '../screens/notifications/notifications_screen.dart';
import '../screens/profile/profile_screen.dart';
import '../screens/shared/under_development_screen.dart';
import '../screens/tasks/task_detail_screen.dart';
import '../screens/tasks/tasks_list_screen.dart';
@@ -135,6 +136,10 @@ final appRouterProvider = Provider<GoRouter>((ref) {
path: '/notifications',
builder: (context, state) => const NotificationsScreen(),
),
GoRoute(
path: '/profile',
builder: (context, state) => const ProfileScreen(),
),
],
),
],