From 90980257cf571fe3909987f1fec450dd895a0826 Mon Sep 17 00:00:00 2001 From: orz12 Date: Sun, 3 Mar 2024 21:49:56 +0800 Subject: [PATCH] =?UTF-8?q?mod:=20=E8=A7=86=E9=A2=91=E6=A8=AA=E7=89=88?= =?UTF-8?q?=E5=8D=A1=E7=89=87=E6=A0=B7=E5=BC=8F=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/common/widgets/video_card_h.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/common/widgets/video_card_h.dart b/lib/common/widgets/video_card_h.dart index 6109e37f..6dd0d1d1 100644 --- a/lib/common/widgets/video_card_h.dart +++ b/lib/common/widgets/video_card_h.dart @@ -217,13 +217,13 @@ class VideoContent extends StatelessWidget { Expanded( flex: 0, 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, style: TextStyle( fontSize: 11, height: 1, color: Theme.of(context).colorScheme.outline, - overflow: TextOverflow.fade, + overflow: TextOverflow.clip, ), ), ),