> For the complete documentation index, see [llms.txt](https://thebuildex.gitbook.io/enoria/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://thebuildex.gitbook.io/enoria/guide/widgets/row.md).

# Row

A Row is a widget that contains children widgets placed in a horizontal row (like a UIListLayout)

## Example

```lua
e.Row({
    Padding = UDim.new(0, 8), -- padding between elements, do not confuse with UIPadding.
    HorizontalAlignment = Enum.HorizontalAlignment.Center,
    VerticalAlignment = Enum.VerticalAlignment.Bottom,
    Children = {
        e.TextLabel("This is an element."),
        e.TextLabel("This is another element, under the first one."),
        e.TextLabel("This is a third element."),
    }
})
```
