clean up preferences formatting
diff --git a/packages/devtools_app/lib/src/app.dart b/packages/devtools_app/lib/src/app.dart index 5932725..45307b9 100644 --- a/packages/devtools_app/lib/src/app.dart +++ b/packages/devtools_app/lib/src/app.dart
@@ -533,7 +533,9 @@ tooltip: 'Copy Logs', ), ClearButton( - label: '', // TODO this needs to be better centered + label: 'Clear Logs', + minScreenWidthForTextBeforeScaling: + double.infinity, // Forces Icon only mode for button tooltip: 'Clear Logs', onPressed: () => LogStorage.root.clear(), ), @@ -541,9 +543,15 @@ ), const Row( children: [ + SizedBox( + width: defaultSpacing, + ), Icon(Icons.warning), + SizedBox( + width: defaultSpacing, + ), Text( - 'Logs may contain sensitive information. Always check them before sharing.', + 'Logs may contain sensitive information. Always check their contents before sharing.', ) ], ),