The UI Editor panel opens on the right side of the screen when a UI Element is selected. It provides powerful tools to customize and fine-tune every aspect of your UI element.
Customize the visual appearance by configuring background colors, text colors, background images, and content text to match your design needs.
Modify the UI element's X and Y coordinates, as well as its width and height.
Automatically align the UI element to the top, middle, bottom, left, center, or right side of the screen.
Customize spacing around and within the UI element by adjusting margin and padding values. Set specific pixel values for each side (top, right, bottom, and left) to achieve precise spacing control.
This is a specific property for Button and Social Media UI Elements that allows to customize what happens when the UI Element is clicked.
Allows you to add elements to the selected UI container. You can add any available element, including other containers, to create nested layouts. Elements can also be removed from containers, returning them to the main canvas for repositioning or reuse.
Customize the flex direction (row, clumn), justify content (flex-start, flex-end, center, space-between, space-around, and space-evenly ), align content (flex-start, flex-end, center, space-between, and space-around), align items (flex-start, flex-end, center, space-between, and space-around) and flex wrap (wrap, nowrap, and wrap-reverse )
Think of containers as boxes that organize their contents. The flex direction determines if items are arranged horizontally (row) or vertically (column). Justify content controls how items are spaced along this main direction - you can push them to the start, end, center them, or create equal spacing between them. Align items controls how elements are positioned in the opposite direction - for example, in a row container, this determines if items are at the top, middle, or bottom. Flex wrap decides what happens when items run out of space - they can either wrap to a new line or stay squeezed in a single line.