diff --git a/lib/ui/home/performance/performance_ui.dart b/lib/ui/home/performance/performance_ui.dart index a7ba3ba..cf6f45b 100644 --- a/lib/ui/home/performance/performance_ui.dart +++ b/lib/ui/home/performance/performance_ui.dart @@ -243,15 +243,16 @@ class PerformanceUI extends BaseUI { ), ], const SizedBox(height: 12), - Row( - mainAxisAlignment: MainAxisAlignment.end, - children: [ - Text( - "${item.key} 最小值: ${item.min} / 最大值: ${item.max}", - style: TextStyle(color: Colors.white.withOpacity(.6)), - ) - ], - ), + if (item.type != "customize") + Row( + mainAxisAlignment: MainAxisAlignment.end, + children: [ + Text( + "${item.key} 最小值: ${item.min} / 最大值: ${item.max}", + style: TextStyle(color: Colors.white.withOpacity(.6)), + ) + ], + ), const SizedBox(height: 6), Container( color: FluentTheme.of(context).cardColor.withOpacity(.1),