Skip to content

Commit

Permalink
remove giant formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kenzieschmoll committed Jan 8, 2024
1 parent 903396a commit f0f43ea
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 14 deletions.
1 change: 0 additions & 1 deletion packages/devtools_app/lib/src/framework/scaffold.dart
Expand Up @@ -302,7 +302,6 @@ class DevToolsScaffoldState extends State<DevToolsScaffold>
),
],
);
final theme = Theme.of(context);

return Provider<ImportController>.value(
value: _importController,
Expand Down
Expand Up @@ -7,7 +7,6 @@ import 'package:flutter/material.dart';
import 'package:flutter/services.dart';

import '../../shared/common_widgets.dart';
import '../../shared/table/table.dart';
import '../../shared/ui/colors.dart';
import 'deep_link_list_view.dart';
import 'deep_links_controller.dart';
Expand Down
Expand Up @@ -13,7 +13,6 @@ import '../../shared/common_widgets.dart';
import '../../shared/http/http.dart';
import '../../shared/http/http_request_data.dart';
import '../../shared/primitives/utils.dart';
import '../../shared/table/table.dart';
import '../../shared/ui/colors.dart';
import 'network_controller.dart';
import 'network_model.dart';
Expand Down
Expand Up @@ -32,11 +32,10 @@ class PerformanceSettingsDialog extends StatelessWidget {
const SizedBox(height: denseSpacing),
],
CheckboxSetting(
notifier:
controller.timelineEventsController.useLegacyTraceViewer,
notifier: controller.timelineEventsController.useLegacyTraceViewer,
title: 'Use legacy trace viewer',
onChanged: controller
.timelineEventsController.toggleUseLegacyTraceViewer,
onChanged:
controller.timelineEventsController.toggleUseLegacyTraceViewer,
),
],
),
Expand Down
Expand Up @@ -16,7 +16,6 @@ import '../../shared/analytics/constants.dart' as gac;
import '../../shared/common_widgets.dart';
import '../../shared/globals.dart';
import '../../shared/primitives/utils.dart';
import '../../shared/table/table.dart';
import '../../shared/tree.dart';
import '../debugger/codeview.dart';
import '../debugger/codeview_controller.dart';
Expand Down
Expand Up @@ -256,9 +256,11 @@ class ExpressionEvalFieldState extends State<ExpressionEvalField>
);
},
// Disable ligatures, so the suggestions of the auto complete work correcly.
style: Theme.of(context)
.fixedFontStyle
.copyWith(fontFeatures: [const FontFeature.disable('liga')]),
style: Theme.of(context).fixedFontStyle.copyWith(
fontFeatures: [
const FontFeature.disable('liga'),
],
),
),
),
),
Expand Down
1 change: 0 additions & 1 deletion packages/devtools_app/lib/src/shared/ui/utils.dart
Expand Up @@ -11,7 +11,6 @@ import 'package:flutter/scheduler.dart';

import '../primitives/enum_utils.dart';
import '../primitives/utils.dart';
import '../table/table.dart';

/// Returns a [TextSpan] that only includes the first [length] characters of
/// [span].
Expand Down
4 changes: 2 additions & 2 deletions packages/devtools_test/lib/src/helpers/actions.dart
Expand Up @@ -122,11 +122,11 @@ Future<void> loadSampleData(
}

/// Scrolls to the end of the first [Scrollable] descendant of the [T] widget.
///
///
/// For example, if you have some widget in the tree 'Foo' that contains a
/// [Scrollbar] somewhere in its descendants, calling
/// `scrollToEnd<Foo>(controller)` would perform the following steps:
///
///
/// 1) find the [Scrollbar] widget descending from [Foo].
/// 2) access the [Scrollbar] widget's [ScrollController].
/// 3) scroll the scrollable attached to the [ScrollController] to the end of
Expand Down

0 comments on commit f0f43ea

Please sign in to comment.