Parameters
Configuration options for the spacer.
A flexible space that expands along the major axis of its containing stack layout.
Spacer(props?: { minLength?: number }): Component;
Show properties
HStack([
Text("Left"),
Spacer(),
Text("Right")
])
VStack([
Text("Top"),
Spacer({ minLength: 20 }),
Text("Bottom")
])
HStack([
Text("1"),
Spacer(),
Text("2"),
Spacer(),
Text("3")
])