Improve comic display

This commit is contained in:
2025-01-06 21:41:52 +08:00
parent 08e8a45236
commit 91ee48cc6c
5 changed files with 123 additions and 110 deletions

View File

@@ -73,6 +73,7 @@ class FavoriteItem implements Comic {
@override
String get description {
var time = this.time.substring(0, 10);
return appdata.settings['comicDisplayMode'] == 'detailed'
? "$time | ${type == ComicType.local ? 'local' : type.comicSource?.name ?? "Unknown"}"
: "${type.comicSource?.name ?? "Unknown"} | $time";