Parameters
Fixed size configuration.
Fixes the size of this view to its ideal size in the specified dimensions.
.fixedSize(config: { horizontal?: boolean; vertical?: boolean }): Component;
Text("Fixed width text")
.fixedSize({ horizontal: true })
VStack([
Text("Line 1"),
Text("Line 2")
])
.fixedSize({ vertical: true })
Image("icon.png")
.fixedSize({ horizontal: true, vertical: true })