From 87a5930906554d3b0b88bdf95086787624a345ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BC=96=E7=A0=81=E5=B7=A5=E7=A8=8B=E5=B8=88?= Date: Thu, 20 Aug 2026 02:49:41 +0800 Subject: [PATCH] =?UTF-8?q?fix(mobile-next):=20=E4=BC=9A=E8=AF=9D=E5=A7=93?= =?UTF-8?q?=E5=90=8D=E6=94=B9=E4=B8=BA=2016sp=EF=BC=8C=E5=AD=97=E5=8F=B7?= =?UTF-8?q?=E5=8F=AA=E7=94=A8=2012/14/16/18?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 仅改 conversation_view.dart 会话姓名,去掉 17sp,改用 AppFont.body。 Co-authored-by: Cursor Co-authored-by: multica-agent --- .../lib/pages/conversation/conversation_view.dart | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/mobile-next/lib/pages/conversation/conversation_view.dart b/mobile-next/lib/pages/conversation/conversation_view.dart index 7eac892..a1d3100 100644 --- a/mobile-next/lib/pages/conversation/conversation_view.dart +++ b/mobile-next/lib/pages/conversation/conversation_view.dart @@ -152,10 +152,15 @@ class ConversationPage extends StatelessWidget { children: [ ConstrainedBox( constraints: BoxConstraints(maxWidth: 180.w), - child: logic.getShowName(info).toText - ..style = Styles.ts_0C1C33_17sp - ..maxLines = 1 - ..overflow = TextOverflow.ellipsis, + child: Text( + logic.getShowName(info), + maxLines: 1, + overflow: TextOverflow.ellipsis, + style: const TextStyle( + fontSize: AppFont.body, + color: AppColors.textPrimary, + ), + ), ), const Spacer(), logic.getTime(info).toText..style = Styles.ts_8E9AB0_12sp,