Files
nowser/lib/const/router_path.dart
2025-05-08 14:00:21 +08:00

17 lines
644 B
Dart

class RouterPath {
static const String INDEX = "/";
static const String WEB_TABS = "/webTabs";
static const String WEB_URL_INPUT = "/webUrlInput";
static const String ME = "/me";
static const String KEYS = "/keys";
static const String APPS = "/apps";
static const String ADD_REMOTE_APP = "/addRemoteApp";
static const String APP_DETAIL = "/appDetail";
static const String HISTORY = "/history";
static const String BOOKMARK = "/bookmark";
static const String AUTH_LOGS = "/authLogs";
static const String SETTING = "/setting";
static const String ABOUT_ME = "/aboutMe";
static const String DOWNLOADS = "/downloads";
}