Enoria
  • Home
  • Guide
    • Getting Started
    • Hello world!
    • Widgets
      • Container
      • Column
      • Row
      • Form
      • GridBuilder
      • ListBuilder
      • TextLabel
      • TextButton
      • ImageLabel
      • ImageButton
      • PageLayout
      • ScrollContainer
      • Stack
      • TextBox
      • TextFormField
      • VerticalSpacer
      • HorizontalSpacer
      • Viewport
  • Events
  • State Management
    • Stores
    • Observer
  • Animations
  • Build forms with validation
  • Theming
    • Classes
Powered by GitBook
On this page

Was this helpful?

  1. Guide
  2. Widgets

Row

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

Example

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."),
    }
})

PreviousColumnNextForm

Last updated 4 years ago

Was this helpful?