mod: show pgc renewalTime

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-04-12 21:38:13 +08:00
parent 17548e935e
commit a7bbfc983e

View File

@@ -146,10 +146,12 @@ class FavPgcItem extends StatelessWidget {
if (item.newEp?['index_show'] != null) ...[ if (item.newEp?['index_show'] != null) ...[
const SizedBox(height: 6), const SizedBox(height: 6),
Text( Text(
'${item.newEp?['index_show']}', '${item.newEp?['index_show']}${item.isFinish == 0 && item.renewalTime?.isNotEmpty == true ? '${item.renewalTime}' : ''}',
style: TextStyle( style: TextStyle(
fontSize: 13, fontSize: 13,
color: Theme.of(context).colorScheme.outline, color: Theme.of(context)
.colorScheme
.onSurfaceVariant,
), ),
), ),
], ],
@@ -161,7 +163,9 @@ class FavPgcItem extends StatelessWidget {
item.progress!, item.progress!,
style: TextStyle( style: TextStyle(
fontSize: 13, fontSize: 13,
color: Theme.of(context).colorScheme.outline, color: Theme.of(context)
.colorScheme
.onSurfaceVariant,
), ),
), ),
], ],