You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/kitchen-sink/src/ensemble/screens/layouts.yaml
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ View:
20
20
header:
21
21
title:
22
22
Header:
23
-
23
+
24
24
menu:
25
25
Drawer:
26
26
id: testDrawer
@@ -36,25 +36,25 @@ View:
36
36
label: Navigate Home
37
37
onTap:
38
38
executeCode: |
39
-
testDrawer.setCollapsed(true);
39
+
testDrawer.setIsCollapsed(true);
40
40
ensemble.navigateScreen("Home");
41
41
- Button:
42
42
label: Navigate to Widgets
43
43
onTap:
44
44
executeCode: |
45
-
testDrawer.setCollapsed(true);
45
+
testDrawer.setIsCollapsed(true);
46
46
ensemble.navigateScreen("Widgets");
47
47
- Button:
48
48
label: Navigate to Layouts
49
49
onTap:
50
50
executeCode: |
51
-
testDrawer.setCollapsed(true);
51
+
testDrawer.setIsCollapsed(true);
52
52
ensemble.navigateScreen("Layouts");
53
53
- Button:
54
54
label: Close Drawer
55
55
onTap:
56
56
executeCode: |
57
-
testDrawer.setCollapsed(true);
57
+
testDrawer.setIsCollapsed(true);
58
58
59
59
body:
60
60
Column:
@@ -151,18 +151,18 @@ View:
151
151
label: 2
152
152
- Button:
153
153
label: FittedColumn
154
-
154
+
155
155
- Markdown:
156
156
text: |
157
157
## Drawer
158
158
159
-
Click the button below to open the drawer in the current view. You can place any widgets you would like in the drawer. The drawer can be opened and closed dynamically using the `setCollapsed` method.
159
+
Click the button below to open the drawer in the current view. You can place any widgets you would like in the drawer. The drawer can be opened and closed dynamically using the `setIsCollapsed` method.
0 commit comments