From 0bfb3d0be4a2eebba8c68397d03cdf589b54deae Mon Sep 17 00:00:00 2001 From: Zeew Date: Fri, 15 Aug 2025 15:31:34 +0800 Subject: [PATCH] =?UTF-8?q?style=EF=BC=9A=E7=BD=AE=E9=A1=B6=E8=81=8A?= =?UTF-8?q?=E5=A4=A9=E5=92=8C=E6=B6=88=E6=81=AF=E5=85=8D=E6=89=93=E6=89=B0?= =?UTF-8?q?=E6=96=87=E5=AD=97=E5=AD=97=E5=8F=B7=E7=BB=9F=E4=B8=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../widget/tim_uikit_operation_item.dart | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/ui/views/TIMUIKitProfile/widget/tim_uikit_operation_item.dart b/lib/ui/views/TIMUIKitProfile/widget/tim_uikit_operation_item.dart index 7cbfa16..62c0282 100644 --- a/lib/ui/views/TIMUIKitProfile/widget/tim_uikit_operation_item.dart +++ b/lib/ui/views/TIMUIKitProfile/widget/tim_uikit_operation_item.dart @@ -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)