Skip to content

Instantly share code, notes, and snippets.

@dela3499
Created September 1, 2015 03:55
Show Gist options
  • Save dela3499/200f2d7f95566f1f3e0a to your computer and use it in GitHub Desktop.
Save dela3499/200f2d7f95566f1f3e0a to your computer and use it in GitHub Desktop.
import Graphics.Element exposing (..)
import Window
import Text
import Signal
main = Signal.map view Window.dimensions
view (w, h) =
(w, h)
|> toString
|> Text.fromString
|> Text.height 70
|> leftAligned
|> container w h middle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment