UIListLayout

Show Deprecated

A UIListLayout positions sibling UI elements in rows or columns within the parent UI container, based on the FillDirection. The Position property of each sibling GuiObject is ignored and overridden by the UIListLayout. Each sibling retains its defined Size unless the layout is configured to utilize a flex layout.

UIListLayouts illustrating FillDirection of either horizontal or vertical.

To control the layout order of siblings, set SortOrder to either Enum.SortOrder.Name or Enum.SortOrder.LayoutOrder, then rename siblings in alphanumerical order or set their LayoutOrder value, respectively. UIListLayout will automatically re‑layout elements when elements are added/removed, or if a sibling's Name or LayoutOrder changes.

Padding between siblings is controlled through the Padding propertly, and wrapping within the parent container's bounds through the Wraps boolean. Alignment of siblings within the parent container is controlled through HorizontalAlignment and VerticalAlignment unless the layout is configured to utilize a flex layout.

Flex Layouts

A flex layout is enabled on a UIListLayout when the following properties are set, or if any GuiObject sibling has a UIFlexItem parented to it.

Note that there are performance implications of using a flex-enabled UIListLayout, since extra calculations are needed to calculate flex basis sizes, flexed sizes, and line wrapping. Thus, you should not enable flex for a basic UIListLayout that does not actionably use flex.

Summary

Properties

Properties inherited from UIGridStyleLayout

Properties

HorizontalFlex

Read Parallel

When the list layout's FillDirection is set to Enum.FillDirection.Horizontal, the HorizontalFlex property specifies how to distribute extra horizontal space in the parent container.

SettingSibling Behavior
NoneNo flex behavior; siblings maintain their defined width.
FillSiblings resize horizontally to fill the entire parent container, overriding their defined width. The number of siblings in a row remain unchanged; for example, if three siblings fit horizontally within the container's width under the None setting, those three siblings will resize to fill the entire width.
SpaceAroundSiblings maintain their defined width. Equal spacing is added between siblings, and half that spacing is added around siblings.
SpaceBetweenSiblings maintain their defined width. Equal spacing is added between siblings, but no additional space is added around siblings.
SpaceEvenlySiblings maintain their defined width. Equal spacing is added both between and around siblings.
UIListLayout examples showing how each HorizontalFlex option affects the size and spacing of sibling UI objects.

Cross-Direction Behavior

In vertical list layouts (FillDirection set to Enum.FillDirection.Vertical), the HorizontalFlex property specifies how to distribute the siblings across the horizontal cross‑direction. In such layouts, a setting of Enum.UIFlexAlignment.Fill makes the siblings fill the entire horizontal space while vertical spacing adheres to VerticalFlex.

Diagram showing how HorizontalFlex affects the horizontal size of sibling UI objects when the UIListLayout fill direction is set to vertical.

AutomaticSize Interaction

If GuiObject.AutomaticSize is enabled for a child of the UIListLayout in the FillDirection, it is interpreted as "automatic flex basis" and it defines the size of the GuiObject from which it can grow or shrink.

If GuiObject.AutomaticSize is enabled for a child of the UIListLayout in the cross‑direction, it is interpreted as "automatic cross size" and it defines the minimum size needed to contain all the child's content in the cross‑direction.

ItemLineAlignment

Read Parallel

In a flex layout, defines the cross-directional alignment of siblings within a line.

Diagram showing how ItemLineAlignment affects the cross-directional alignment of sibling UI objects.

Padding

Read Parallel

Determines the amount of free space between each element, set to either a scale (percentage of the parent's size in the current direction) or an offset (static spacing value similar to pixel size).

Read Parallel

When the list layout's FillDirection is set to Enum.FillDirection.Vertical, the VerticalFlex property specifies how to distribute extra vertical space in the parent container.

SettingSibling Behavior
NoneNo flex behavior; siblings maintain their defined height.
FillSiblings resize vertically to fill the entire parent container, overriding their defined height. The number of siblings in a column remain unchanged; for example, if three siblings fit vertically within the container's height under the None setting, those three siblings will resize to fill the entire height.
SpaceAroundSiblings maintain their defined height. Equal spacing is added between siblings, and half that spacing is added around siblings.
SpaceBetweenSiblings maintain their defined height. Equal spacing is added between siblings, but no additional space is added around siblings.
SpaceEvenlySiblings maintain their defined height. Equal spacing is added both between and around siblings.
UIListLayout examples showing how each VerticalFlex option affects the size and spacing of sibling UI objects.

Cross-Direction Behavior

In horizontal list layouts (FillDirection set to Enum.FillDirection.Horizontal), the VerticalFlex property specifies how to distribute the siblings across the vertical cross direction. In such layouts, a setting of Enum.UIFlexAlignment.Fill makes the siblings fill the entire vertical space while horizontal spacing adheres to HorizontalFlex.

Diagram showing how VerticalFlex affects the vertical size of sibling UI objects when the UIListLayout fill direction is set to horizontal.

AutomaticSize Interaction

If GuiObject.AutomaticSize is enabled for a child of the UIListLayout in the FillDirection, it is interpreted as "automatic flex basis" and it defines the size of the GuiObject from which it can grow or shrink.

If GuiObject.AutomaticSize is enabled for a child of the UIListLayout in the cross‑direction, it is interpreted as "automatic cross size" and it defines the minimum size needed to contain all the child's content in the cross‑direction.

Wraps

Read Parallel

Controls whether siblings within the parent container wrap to another line when their default size exceeds the width/height of the container's bounds.

Diagram showing how Wraps affects how siblings are distributed within the parent container's bounds.

Methods

Events