We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6ae963 commit 6a74d61Copy full SHA for 6a74d61
internal/comp/divider.go
@@ -109,7 +109,7 @@ func (d Divider) StaticSchema(value string) Divider {
109
return d.set("staticSchema", value)
110
}
111
112
-// Style Component style
+// Style Component style, dashed | solid
113
func (d Divider) Style(value any) Divider {
114
return d.set("style", value)
115
internal/comp/flex.go
@@ -134,6 +134,11 @@ func (f Flex) UseMobileUI(value bool) Flex {
134
return f.set("useMobileUI", value)
135
136
137
+// Mobile sets the style when the divice is mobile
138
+func (f Flex) Mobile(value any) Flex {
139
+ return f.set("mobile", value)
140
+}
141
+
142
// Visible sets whether the component is visible
143
func (f Flex) Visible(value bool) Flex {
144
return f.set("visible", value)
0 commit comments