mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 20:52:32 +00:00
NEW - [Home/Calendar] New "schedule" view to view all days as one list - [Home/Modules] Option to use module "brand" colours or the LunaSea list colours - [Search] Option to hide adult categories - [-arr/Catalogue] Ability to sort by date added - [-arr/Search] Show the indexer/tracker on the collapsed tile TWEAKS - [Development] Updated Flutter packages FIXES - Multiple smaller crash/error fixes Thanks to @lightglitch on GitHub for implementing the schedule calendar mode!
17 lines
405 B
Dart
17 lines
405 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lunasea/core/constants.dart';
|
|
|
|
class SearchConstants {
|
|
SearchConstants._();
|
|
|
|
static const String MODULE_KEY = 'search';
|
|
|
|
static const Map MODULE_MAP = {
|
|
'name': 'Search',
|
|
'desc': 'Search Newznab Indexers',
|
|
'icon': Icons.search,
|
|
'route': '/search',
|
|
'color': Color(Constants.ACCENT_COLOR),
|
|
};
|
|
}
|