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

Container

A Container is just a Frame. It has all the properties that a normal Roblox Frame has.

Example

Here's how to create a Container, change it's size and to make it blue:

e.Container({
    Size = UDim2.new(0.5, 0, 1, 0),
    BackgroundColor3 = Color3.fromRGB(0, 0, 255),
    Child = --[CHILD WIDGET GOES HERE]
})
PreviousWidgetsNextColumn

Last updated 4 years ago

Was this helpful?