mod: 样式修改、历史记录修改

This commit is contained in:
guozhigq
2023-07-10 11:01:22 +08:00
parent 54a5fc61f0
commit f305e0864f
10 changed files with 63 additions and 67 deletions

View File

@ -78,8 +78,13 @@ Widget seasonPanel(UgcSeason ugcSeason, cid) {
padding: const EdgeInsets.fromLTRB(10, 10, 10, 10),
child: Row(
children: [
Text('合集:${ugcSeason.title!}'),
const Spacer(),
Expanded(
child: Text(
'合集:${ugcSeason.title!}',
overflow: TextOverflow.ellipsis,
),
),
const SizedBox(width: 15),
Text(
'${currentIndex + 1} / ${ugcSeason.epCount}',
style: Theme.of(context).textTheme.labelSmall,