HorizontalSpacer

Add horizontal space between widgets (in pixels)

Example

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

Last updated