Class: Pacman::Home::ShowView

Inherits:
Charming::View
  • Object
show all
Defined in:
app/views/home/show_view.rb

Constant Summary collapse

LOGO =
<<~ART
  ██████╗  █████╗  ██████╗      ███╗   ███╗ █████╗ ███╗   ██╗
  ██╔══██╗██╔══██╗██╔════╝█████╗████╗ ████║██╔══██╗████╗  ██║
  ██████╔╝███████║██║     ╚════╝██╔████╔██║███████║██╔██╗ ██║
  ██╔═══╝ ██╔══██║██║           ██║╚██╔╝██║██╔══██║██║╚██╗██║
  ██║     ██║  ██║╚██████╗      ██║ ╚═╝ ██║██║  ██║██║ ╚████║
  ╚═╝     ╚═╝  ╚═╝ ╚═════╝      ╚═╝     ╚═╝╚═╝  ╚═╝╚═╝  ╚═══╝
ART

Instance Method Summary collapse

Instance Method Details

#renderObject



15
16
17
18
19
20
21
# File 'app/views/home/show_view.rb', line 15

def render
  Charming::UI.center(
    column(logo_block, subtitle, start_hint, controls_hint, gap: 1),
    width: layout_screen.width,
    height: layout_screen.height
  )
end