Created
February 20, 2016 18:21
-
-
Save runspired/ff0e921813b65a7f384a to your computer and use it in GitHub Desktop.
Flexi
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
<screen> <!-- not flex --> | |
<container horiztonal> <!-- flex column | |
<vbox></vbox> <!-- 100% height, some width --> | |
<hbox> <!-- remaining width --> | |
<container vertical> <!-- 100% width --> | |
<!-- the items split the available height --> | |
<box> | |
<container horizontal> <!-- 100% width --> | |
<!-- the items split the available width --> | |
<box></box> | |
<box></box> | |
<box></box> | |
</container> | |
</box> | |
<box></box> | |
<box></box> | |
</container> | |
</hbox> <!-- remaining width --> | |
</container> | |
</screen> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment