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

VerticalSpacer

Add vertical space between widgets (in pixels)

Example

e:RunApp({
	Name = script.Parent.Parent.Name,
	Home = e.Column({
		Children = {
			e.TextLabel("Children 1"),
			e.VerticalSpacer(16),
			e.TextLabel("Children 2"),
		}
	})
})

PreviousTextFormFieldNextHorizontalSpacer

Last updated 4 years ago

Was this helpful?