diff --git a/packages/devtools_app/lib/src/inspector/flutter/inspector_screen.dart b/packages/devtools_app/lib/src/inspector/flutter/inspector_screen.dart index f4f1916f7ba..9aa8fccbe29 100644 --- a/packages/devtools_app/lib/src/inspector/flutter/inspector_screen.dart +++ b/packages/devtools_app/lib/src/inspector/flutter/inspector_screen.dart @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:vm_service/vm_service.dart' hide Stack; @@ -242,7 +241,7 @@ class _InspectorScreenBodyState extends State inspectorService: inspectorService, treeType: FlutterTreeType.widget, onExpandCollapseSupported: _onExpandCollapseSupported, - onLayoutExplorerSupported: kIsWeb ? null : _onLayoutExplorerSupported, + onLayoutExplorerSupported: _onLayoutExplorerSupported, ); // TODO(jacobr): move this notice display to once a day. diff --git a/packages/devtools_app/lib/src/inspector/inspector_controller.dart b/packages/devtools_app/lib/src/inspector/inspector_controller.dart index 7ec8165a2b0..a0357bcf848 100644 --- a/packages/devtools_app/lib/src/inspector/inspector_controller.dart +++ b/packages/devtools_app/lib/src/inspector/inspector_controller.dart @@ -139,8 +139,7 @@ class InspectorController extends DisposableController debugSummaryLayoutEnabled.value = !debugSummaryLayoutEnabled.value; } - // TODO(albertusangga): Remove this flag if required CL to Flutter is landed - static bool enableExperimentalStoryOfLayout = false; + static bool enableExperimentalStoryOfLayout = true; final List _selectionListeners = [];