Last active
September 26, 2018 14:41
-
-
Save emilsjolander/1f63dee44cf5a84790fb5550bb082f10 to your computer and use it in GitHub Desktop.
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
| { | |
| "version": "0.0.1", | |
| "root": { | |
| "kind": "flexbox", | |
| "props": { | |
| "flex-direction": "column", | |
| "children": [ | |
| { | |
| "kind": "text", | |
| "props": { | |
| "text": "Hello VML!", | |
| "font-size": 20, | |
| "font-color": "#00FF00" | |
| }, | |
| "layout": {} | |
| }, | |
| { | |
| "kind": "flexbox", | |
| "props": {"background-color": "#FF0000"}, | |
| "layout": { | |
| "width": {"unit": "point", "value": 100}, | |
| "height": {"unit": "point", "value": 100} | |
| } | |
| }, | |
| { | |
| "kind": "flexbox", | |
| "props": {"background-color": "#00FF00"}, | |
| "layout": { | |
| "width": {"unit": "point", "value": 100}, | |
| "height": {"unit": "point", "value": 100} | |
| } | |
| }, | |
| { | |
| "kind": "flexbox", | |
| "props": {"background-color": "#0000FF"}, | |
| "layout": { | |
| "width": {"unit": "point", "value": 100}, | |
| "height": {"unit": "point", "value": 100} | |
| } | |
| } | |
| ] | |
| }, | |
| "layout": {} | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment