Stubbed game clock page

This commit is contained in:
2021-09-29 09:08:15 -05:00
parent a34d4bbeb2
commit 7d2d44c52f
3 changed files with 33 additions and 4 deletions

19
lib/pages/game_clock.rb Normal file
View File

@@ -0,0 +1,19 @@
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