Redesigning TCT

This commit is contained in:
2020-12-08 22:18:54 -06:00
parent fe480202ac
commit 691cafb697
14 changed files with 511 additions and 3 deletions

23
lib/pages/editor.rb Normal file
View File

@@ -0,0 +1,23 @@
module TAC
class Pages
class Editor < Page
def setup
header_bar("Editor")
body.clear do
flow(width: 1.0, height: 1.0) do
stack(width: 0.3333, height: 1.0) do
background 0xff_550055
end
stack(width: 0.3333, height: 1.0) do
background 0xff_555555
end
stack(width: 0.3333, height: 1.0) do
background 0xff_55ff55
end
end
end
end
end
end
end