Advertisement
Guest User

Untitled

a guest
Aug 31st, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. import Graphics.Element exposing (..)
  2. import Window
  3. import Text
  4. import Signal
  5.  
  6. main = Signal.map view Window.dimensions
  7.  
  8. view (w, h) =
  9. (w, h)
  10. |> toString
  11. |> Text.fromString
  12. |> Text.height 70
  13. |> leftAligned
  14. |> container w h middle
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement