UIFlexAlignment
In a UIListLayout flex layout, specifies how to distribute extra space in the parent container.
Items 5
History | Name | Value | Description | |
---|---|---|---|---|
598 | None | 0 | No flex behavior; siblings maintain their defined width or height. | |
598 | Fill | 1 | Siblings resize to fill the entire parent container, overriding their defined width or height. | |
598 | SpaceAround | 2 | Siblings maintain their defined width or height. Equal spacing is added on both sides of each sibling. | |
598 | SpaceBetween | 3 | Siblings maintain their defined width or height. Equal spacing is added between siblings, but no additional space is added around siblings. | |
598 | SpaceEvenly | 4 | Siblings maintain their defined width or height. Equal spacing is added both between and around siblings. |
Description
In a UIListLayout flex layout, specifies how to distribute extra horizontal space in a HorizontalFlex layout or vertical space in a VerticalFlex layout.
History 6
- 598 Add SpaceEvenly
- 598 Add SpaceBetween
- 598 Add SpaceAround
- 598 Add None
- 598 Add Fill
- 598 Add UIFlexAlignment