mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 04:32:32 +00:00
NEW - [Quick Actions] Enable home screen quick actions to quickly launch into up to 4 modules - [Tautulli/User] Implemented user pages including profile, history, synced, and IP addresses - [Settings/Resources] Added link to join TestFlight TWEAKS - [Home/Modules] Slightly adjusted design of quick links - [Settings] Slightly adjusted design of module tiles FIXES - [Home/Modules] Search tile would not show up after adding first indexer until a route change - [Tautulli/Activity] Tautulli could show an incorrect transcode container
18 lines
455 B
Dart
18 lines
455 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lunasea/core.dart';
|
|
|
|
class SettingsConstants {
|
|
SettingsConstants._();
|
|
|
|
static const String MODULE_KEY = 'settings';
|
|
|
|
static const ModuleMap MODULE_MAP = ModuleMap(
|
|
name: 'Settings',
|
|
description: 'Update Configuration',
|
|
settingsDescription: '',
|
|
icon: CustomIcons.settings,
|
|
route: '/settings',
|
|
color: Color(Constants.ACCENT_COLOR),
|
|
);
|
|
}
|