Allow OS notifications

This commit is contained in:
2026-02-23 22:19:23 +08:00
parent 98355c3707
commit cc6fda0e79
11 changed files with 398 additions and 4 deletions
+5
View File
@@ -15,6 +15,7 @@ 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/shared/permissions_screen.dart';
import '../screens/tasks/task_detail_screen.dart';
import '../screens/tasks/tasks_list_screen.dart';
import '../screens/tickets/ticket_detail_screen.dart';
@@ -138,6 +139,10 @@ final appRouterProvider = Provider<GoRouter>((ref) {
path: '/settings/geofence-test',
builder: (context, state) => const GeofenceTestScreen(),
),
GoRoute(
path: '/settings/permissions',
builder: (context, state) => const PermissionsScreen(),
),
GoRoute(
path: '/notifications',
builder: (context, state) => const NotificationsScreen(),