feat: implement authentication feature with login logic, UI components, and routing for user access
This commit is contained in:
@@ -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';
|
||||
}
|
||||
Reference in New Issue
Block a user