This repository was archived by the owner on Apr 29, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ public static void renderWidgets() {
32
32
EditorWindow . GetWindow ( typeof ( Widgets ) ) ;
33
33
}
34
34
35
+ //These samples are not available after Unity2019.1
36
+ /*
35
37
[MenuItem("UIWidgetsTests/Show SceneViewTests")]
36
38
public static void showSceneView() {
37
39
SceneViewTests.show();
@@ -40,6 +42,6 @@ public static void showSceneView() {
40
42
[MenuItem("UIWidgetsTests/Hide SceneViewTests")]
41
43
public static void hideSceneView() {
42
44
SceneViewTests.hide();
43
- }
45
+ }*/
44
46
}
45
47
}
Original file line number Diff line number Diff line change @@ -24,12 +24,16 @@ public static Widget createRow(bool canHover = true, bool nest = false) {
24
24
result , "inner" ) ;
25
25
}
26
26
27
+ //WARNING: nested MouseTracker is not supported by the current implementation that ported from flutter
28
+ //refer to this issue https://github.com/flutter/flutter/issues/28407 and wait Google guys fixing it
29
+ /*
27
30
if (nest) {
28
31
result = new Container(child: result, padding: EdgeInsets.all(40),
29
32
color: Color.fromARGB(255, 255, 0, 0));
30
33
result = new HoverTrackWidget(null,
31
34
result, "outer");
32
35
}
36
+ */
33
37
34
38
return result ;
35
39
}
You can’t perform that action at this time.
0 commit comments