mod: 视频横版卡片样式调整

This commit is contained in:
orz12
2024-03-03 21:49:56 +08:00
parent 77e495ed02
commit 90980257cf

View File

@@ -217,13 +217,13 @@ class VideoContent extends StatelessWidget {
Expanded( Expanded(
flex: 0, flex: 0,
child: Text( child: Text(
"${showPubdate ? Utils.dateFormat(videoItem.pubdate!, formatType: 'day') + ' ' : ''} ${showOwner ? videoItem.owner.name : ''}", "${showPubdate ? Utils.dateFormat(videoItem.pubdate!, formatType: 'day') + ' ' : ''} ${showOwner ? videoItem.owner.name : ''}",
maxLines: 1, maxLines: 1,
style: TextStyle( style: TextStyle(
fontSize: 11, fontSize: 11,
height: 1, height: 1,
color: Theme.of(context).colorScheme.outline, color: Theme.of(context).colorScheme.outline,
overflow: TextOverflow.fade, overflow: TextOverflow.clip,
), ),
), ),
), ),