We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d53018 commit aa1398bCopy full SHA for aa1398b
packages/devtools_app/lib/src/standalone_ui/standalone_screen.dart
@@ -6,8 +6,8 @@ import 'package:flutter/material.dart';
6
7
import '../shared/globals.dart';
8
import '../shared/ui/common_widgets.dart';
9
-import 'ide_shared/property_editor/property_editor_panel.dart';
10
import 'vs_code/flutter_panel.dart';
+import 'vs_code/property_editor_panel.dart';
11
12
/// "Screens" that are intended for standalone use only, likely for embedding
13
/// directly in an IDE.
@@ -48,7 +48,7 @@ enum StandaloneScreenType {
48
builder: (context, data, _) {
49
return data == null
50
? const CenteredCircularProgressIndicator()
51
- : PropertyEditorPanel(data);
+ : PropertyEditorSidebarPanel(data);
52
},
53
),
54
};
0 commit comments