UI.WeekSchedule

From GiderosMobile
Revision as of 07:48, 17 October 2023 by MoKaLux (talk | contribs) (Created page with "__NOTOC__ '''Available since:''' Gideros 2023.1<br/> '''Class:''' UI<br/> === Description === Creates a WeekSchedule widget. <syntaxhighlight lang="lua"> UI.WeekSchedule....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Available since: Gideros 2023.1
Class: UI

Description

Creates a WeekSchedule widget.

UI.WeekSchedule.new()

Example

local gui = UI.WeekSchedule.new()
gui:setColor(0x5c5c5c)
gui:setPosition(50, 0)

local screen=UI.Screen.new() -- needed to add the WeekSchedule
screen:ui(gui)