style:置顶聊天和消息免打扰文字字号统一

This commit is contained in:
Zeew 2025-08-15 15:31:34 +08:00
parent 94ae8a45f8
commit 0bfb3d0be4
1 changed files with 7 additions and 3 deletions

View File

@ -111,7 +111,8 @@ class TIMUIKitOperationItem extends TIMUIKitStatelessWidget {
operationName,
style: TextStyle(
color:
isDesktopScreen ? hexToColor("7f7f7f") : null),
isDesktopScreen ? hexToColor("7f7f7f") : null,
fontSize: 16),
),
if (operationDescription != null)
Text(
@ -133,7 +134,8 @@ class TIMUIKitOperationItem extends TIMUIKitStatelessWidget {
operationName,
style: TextStyle(
color:
isDesktopScreen ? hexToColor("7f7f7f") : null),
isDesktopScreen ? hexToColor("7f7f7f") : null,
fontSize: 16),
),
if (operationDescription != null)
Text(
@ -182,7 +184,9 @@ class TIMUIKitOperationItem extends TIMUIKitStatelessWidget {
mainAxisAlignment: isDesktopScreen
? MainAxisAlignment.start
: MainAxisAlignment.end,
children: [Expanded(child: operationRightWidget ?? const Text(""))],
children: [
Expanded(child: operationRightWidget ?? const Text(""))
],
)),
(type != "switch" && !isDesktopScreen && showAllowEditStatus)
? const Icon(Icons.keyboard_arrow_right)