Files
rasadyar_application/packages/livestock/lib/presentation/routes/app_routes.dart

16 lines
407 B
Dart
Raw Normal View History

2025-05-19 16:17:01 +03:30
part of 'app_pages.dart';
sealed class LiveStockRoutes {
LiveStockRoutes._();
static const auth = '/AuthLiveStock';
2025-05-21 09:04:21 +03:30
static const init = '/liveStock';
static const requests = '/requests';
static const map = '/map';
static const profile = '/profile';
2025-05-25 16:54:43 +03:30
//static const requestTagging = '$init/tagging';
static const requestTagging = '$requests/tagging';
static const tagging = '/tagging';
2025-05-19 16:17:01 +03:30
}