Created
August 9, 2016 21:18
-
-
Save knewter/f15b717240a8a758055d2e9b511e3d2a to your computer and use it in GitHub Desktop.
Introduction to elm-mdl - 9
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
view : Model -> Html Msg | |
view model = | |
Material.Scheme.topWithScheme Color.Teal Color.LightGreen <| | |
Layout.render Mdl | |
model.mdl | |
[ Layout.fixedHeader | |
, Layout.selectedTab model.selectedTab | |
, Layout.onSelectTab SelectTab | |
] | |
{ header = [ h1 [ style [ ( "padding", "2rem" ) ] ] [ text "Counter" ] ] | |
, drawer = [] | |
, tabs = ( [ text "Milk", text "Oranges" ], [] ) | |
, main = [ viewBody model ] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment