UI.Panel

From GiderosMobile

Available since: Gideros 2023.1
Class: UI

Description

Creates a Panel widget.

UI.Panel.new(color)

Parameters

color: (hex) the Panel widget background color

Example

local gui = UI.Panel.new(0x4c4c4c)
gui:setDimensions(320, 320)
gui:setColor(0xaa0000)
gui:setPosition(50, 50)

stage:addChild(gui)