Fix renderflex overflow errors on Performance and CPU Profiler screens (#6770)

diff --git a/packages/devtools_app/lib/src/screens/performance/panes/controls/performance_controls.dart b/packages/devtools_app/lib/src/screens/performance/panes/controls/performance_controls.dart
index 2ecc60a..617f975 100644
--- a/packages/devtools_app/lib/src/screens/performance/panes/controls/performance_controls.dart
+++ b/packages/devtools_app/lib/src/screens/performance/panes/controls/performance_controls.dart
@@ -28,7 +28,7 @@
     required this.onClear,
   });
 
-  static const minScreenWidthForTextBeforeScaling = 1020.0;
+  static const minScreenWidthForTextBeforeScaling = 1085.0;
 
   final PerformanceController controller;
 
diff --git a/packages/devtools_app/lib/src/screens/profiler/panes/controls/profiler_screen_controls.dart b/packages/devtools_app/lib/src/screens/profiler/panes/controls/profiler_screen_controls.dart
index 4b3a006..7ef3f0c 100644
--- a/packages/devtools_app/lib/src/screens/profiler/panes/controls/profiler_screen_controls.dart
+++ b/packages/devtools_app/lib/src/screens/profiler/panes/controls/profiler_screen_controls.dart
@@ -109,7 +109,7 @@
     required this.profilerBusy,
   });
 
-  static const _profilingControlsMinScreenWidthForText = 875.0;
+  static const _profilingControlsMinScreenWidthForText = 930.0;
 
   final ProfilerScreenController controller;