mirror of
https://github.com/TimeCrafters/timecrafters_configuration_tool_desktop.git
synced 2025-12-15 21:32:35 +00:00
19 lines
404 B
Ruby
19 lines
404 B
Ruby
module TAC
|
|
class Pages
|
|
class GameClock < Page
|
|
def setup
|
|
header_bar("Practice Game Clock")
|
|
|
|
body.clear do
|
|
stack(width: 1.0, height: 1.0) do
|
|
label TAC::NAME, width: 1.0, text_size: 48, text_align: :center
|
|
|
|
stack(width: 1.0, height: 8) do
|
|
background 0xff_006000
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end |