Configuration options for the spacer.
A flexible space that expands along the major axis of its parent stack.
Spacer(props?: { minLength: number }): Component;
Show properties
HStack([
Text("Leading"),
Spacer(),
Text("Trailing")
])
VStack([
Text("Top"),
Spacer()
])
.frame({ maxHeight: ".infinity" })
HStack([
Text("Left"),
Spacer({ minLength: 24 }),
Text("Right")
])