1
+ import ScadeKit
2
+
3
+ extension SavingTimerScreenPageAdapter {
4
+ var navigationBar : SCDWidgetsNavigationBar {
5
+ return self . page? . getWidgetByName ( " navigationBar " ) as! SCDWidgetsNavigationBar
6
+ }
7
+
8
+ var backButton : SCDWidgetsButton {
9
+ return self . page? . getWidgetByName ( " backButton " ) as! SCDWidgetsButton
10
+ }
11
+
12
+ var titleLabel : SCDWidgetsLabel {
13
+ return self . page? . getWidgetByName ( " titleLabel " ) as! SCDWidgetsLabel
14
+ }
15
+
16
+ var saveButton : SCDWidgetsButton {
17
+ return self . page? . getWidgetByName ( " saveButton " ) as! SCDWidgetsButton
18
+ }
19
+
20
+ var container1 : SCDWidgetsContainer {
21
+ return self . page? . getWidgetByName ( " container1 " ) as! SCDWidgetsContainer
22
+ }
23
+
24
+ var workLabel : SCDWidgetsLabel {
25
+ return self . page? . getWidgetByName ( " workLabel " ) as! SCDWidgetsLabel
26
+ }
27
+
28
+ var restLabel : SCDWidgetsLabel {
29
+ return self . page? . getWidgetByName ( " restLabel " ) as! SCDWidgetsLabel
30
+ }
31
+
32
+ var container2 : SCDWidgetsContainer {
33
+ return self . page? . getWidgetByName ( " container2 " ) as! SCDWidgetsContainer
34
+ }
35
+
36
+ var label1 : SCDWidgetsLabel {
37
+ return self . page? . getWidgetByName ( " label1 " ) as! SCDWidgetsLabel
38
+ }
39
+
40
+ var container3 : SCDWidgetsContainer {
41
+ return self . page? . getWidgetByName ( " container3 " ) as! SCDWidgetsContainer
42
+ }
43
+
44
+ var label2 : SCDWidgetsLabel {
45
+ return self . page? . getWidgetByName ( " label2 " ) as! SCDWidgetsLabel
46
+ }
47
+
48
+ var setLabel : SCDWidgetsLabel {
49
+ return self . page? . getWidgetByName ( " setLabel " ) as! SCDWidgetsLabel
50
+ }
51
+
52
+ var container : SCDWidgetsContainer {
53
+ return self . page? . getWidgetByName ( " container " ) as! SCDWidgetsContainer
54
+ }
55
+
56
+ var label : SCDWidgetsLabel {
57
+ return self . page? . getWidgetByName ( " label " ) as! SCDWidgetsLabel
58
+ }
59
+
60
+ var rowView1 : SCDWidgetsRowView {
61
+ return self . page? . getWidgetByName ( " rowView1 " ) as! SCDWidgetsRowView
62
+ }
63
+
64
+ var cancelButton : SCDWidgetsButton {
65
+ return self . page? . getWidgetByName ( " cancelButton " ) as! SCDWidgetsButton
66
+ }
67
+
68
+ var rowView2 : SCDWidgetsRowView {
69
+ return self . page? . getWidgetByName ( " rowView2 " ) as! SCDWidgetsRowView
70
+ }
71
+
72
+ var textbox : SCDWidgetsTextbox {
73
+ return self . page? . getWidgetByName ( " textbox " ) as! SCDWidgetsTextbox
74
+ }
75
+ }
0 commit comments