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)