UI.TimePicker

From GiderosMobile

Available since: Gideros 2023.1
Class: UI

Description

Creates a TimePicker widget.

UI.TimePicker.new(allowNil)

Parameters

allowNil: (bool) starts with an empty time (default = false)

Example

local gui = UI.TimePicker.new()
gui:setDimensions(96, 40)
gui:setColor(0x5c5c5c)
gui:setPosition(50, 50)

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