Created
October 20, 2015 10:19
-
-
Save kadikraman/d4ca611a48700e32ef76 to your computer and use it in GitHub Desktop.
Resize window in Elm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Graphics.Element exposing (..) | |
| import Window | |
| area : (Int, Int) -> Int | |
| area (w,h) = | |
| w * h | |
| windowArea : Signal Int | |
| windowArea = | |
| Signal.map area Window.dimensions | |
| main : Signal Element | |
| main = | |
| Signal.map show windowArea |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment