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
20 lines
453 B
Dart
20 lines
453 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ModuleMap {
|
|
final String name;
|
|
final String description;
|
|
final String settingsDescription;
|
|
final String route;
|
|
final IconData icon;
|
|
final Color color;
|
|
|
|
const ModuleMap({
|
|
@required this.name,
|
|
@required this.description,
|
|
@required this.settingsDescription,
|
|
@required this.route,
|
|
@required this.icon,
|
|
@required this.color,
|
|
});
|
|
}
|