Attendance validation involving Location Detection + Facial Recoginition with Liveness Detection

This commit is contained in:
2026-03-07 23:46:43 +08:00
parent 52ef36faac
commit 3dbebd4006
25 changed files with 4840 additions and 361 deletions
+7
View File
@@ -14,6 +14,7 @@ import '../screens/admin/geofence_test_screen.dart';
import '../screens/dashboard/dashboard_screen.dart';
import '../screens/notifications/notifications_screen.dart';
import '../screens/profile/profile_screen.dart';
import '../screens/shared/mobile_verification_screen.dart';
import '../screens/shared/under_development_screen.dart';
import '../screens/shared/permissions_screen.dart';
import '../screens/reports/reports_screen.dart';
@@ -85,6 +86,12 @@ final appRouterProvider = Provider<GoRouter>((ref) {
path: '/signup',
builder: (context, state) => const SignUpScreen(),
),
GoRoute(
path: '/verify/:sessionId',
builder: (context, state) => MobileVerificationScreen(
sessionId: state.pathParameters['sessionId'] ?? '',
),
),
ShellRoute(
builder: (context, state, child) => AppScaffold(child: child),
routes: [