Created
December 1, 2018 22:52
-
-
Save epequeno/38a75d05a10e1feb4106a870a3270a18 to your computer and use it in GitHub Desktop.
basic layout example using elm-ui
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
-- Elm 0.19.0 | |
-- mdgriffith/elm-ui 1.1.0 | |
import Element exposing (..) | |
import Element.Background as Background | |
import Element.Border as Border | |
import Element.Font as Font | |
main = | |
layout [] myLayout | |
-- COLORS | |
sideBarBGColor = | |
Background.color (rgb 0.9 0.5 0.9) | |
helloRowBGColor = | |
Background.color (rgb 0.2 0.9 0.2) | |
worldRowBGColor = | |
Background.color (rgba 0.1 0.3 0.8 0.5) | |
myLayout = | |
row [ height fill | |
, width fill | |
] [ sideBar | |
, mainWindow | |
] | |
sideBar = | |
column [ Border.solid | |
, Border.color (rgb 1 1 1) | |
, Border.width 1 | |
, sideBarBGColor | |
, height fill | |
, width (fillPortion 2 |> maximum 200) | |
] [ el [centerX, centerY] (text "sideBar") | |
] | |
mainWindow = | |
column [ Border.solid | |
, height fill | |
, width (fillPortion 5) | |
] [ helloRow | |
, worldRow | |
] | |
helloRow = | |
row [ height fill | |
, helloRowBGColor | |
, width fill | |
, Border.width 1 | |
, Border.color (rgb 1 1 1) | |
] [ el [centerX, alignBottom, Font.bold] (text "hello") ] | |
worldRow = | |
row [ height fill | |
, worldRowBGColor | |
, width fill | |
, Border.width 1 | |
, Border.color (rgb 1 1 1) | |
] [ el [centerX, centerY, Font.italic] <| text <| String.toUpper "world" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment