From 39bd348b49f357ee8c45d8e7a5ad7326c5ac2116 Mon Sep 17 00:00:00 2001 From: Zeew Date: Wed, 13 Aug 2025 23:29:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B0=83=E6=95=B4=E8=A1=8C=E9=AB=98?= =?UTF-8?q?=EF=BC=8C=E9=81=BF=E5=85=8D=E5=9C=A8=E9=83=A8=E5=88=86=E8=AE=BE?= =?UTF-8?q?=E5=A4=87=E4=B8=8A=E5=87=BA=E7=8E=B0=E6=96=87=E5=AD=97=E9=A1=B6?= =?UTF-8?q?=E9=83=A8=E8=A2=AB=E8=A3=81=E5=89=AA=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../TIMUIKitConversation/tim_uikit_conversation_item.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ui/views/TIMUIKitConversation/tim_uikit_conversation_item.dart b/lib/ui/views/TIMUIKitConversation/tim_uikit_conversation_item.dart index cfed40d..fc684cb 100644 --- a/lib/ui/views/TIMUIKitConversation/tim_uikit_conversation_item.dart +++ b/lib/ui/views/TIMUIKitConversation/tim_uikit_conversation_item.dart @@ -185,7 +185,8 @@ class TIMUIKitConversationItem extends TIMUIKitStatelessWidget { overflow: TextOverflow.ellipsis, maxLines: 1, style: TextStyle( - height: 1, + // 调整行高,避免在部分设备上出现文字顶部被裁剪的问题 + height: 1.2, color: theme.conversationItemTitleTextColor, fontSize: titleFontSize, fontWeight: FontWeight.w400,