The control size to apply. Affects the visual size and padding of supported controls.
Sets the size for controls like buttons and progress views.
.controlSize(size: "mini" | "small" | "regular" | "large" | "extraLarge")
ProgressView()
.controlSize("small")
VStack([
Button("Submit", () => submit()),
ProgressView({ value: 0.5 })
])
.controlSize("large")
ProgressView()
.controlSize("mini")