feat: implement authentication feature with login logic, UI components, and routing for user access

This commit is contained in:
2025-12-24 11:51:30 +03:30
parent 12c6b51aac
commit 3eccf492ff
6 changed files with 142 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
part of 'app_pages.dart';
sealed class LiveStockRoutes {
LiveStockRoutes._();
static const auth = '/AuthLiveStock';
static const init = '/liveStock';
static const requests = '/requests';
static const map = '/map';
static const profile = '/profile';
static const requestTagging = '$requests/tagging';
static const tagging = '/tagging';
}