You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
551 B
25 lines
551 B
/// Route names for navigation.
|
|
class RouteNames {
|
|
/// Home route.
|
|
static const String home = '/home';
|
|
|
|
/// Immich route.
|
|
static const String immich = '/immich';
|
|
|
|
/// Nostr Events route.
|
|
static const String nostrEvents = '/nostr-events';
|
|
|
|
/// Session route.
|
|
static const String session = '/session';
|
|
|
|
/// Settings route.
|
|
static const String settings = '/settings';
|
|
|
|
/// Relay Management route.
|
|
static const String relayManagement = '/relay-management';
|
|
|
|
/// Private constructor to prevent instantiation.
|
|
RouteNames._();
|
|
}
|
|
|