@@ -49,6 +49,14 @@ and objects will be top-aligned at their minimum height.
4949
5050{{% layout name="vbox" %}}
5151
52+ ### Border
53+
54+ Border layout supports positioning of items at the outside of available space.
55+ The border is passed pointers to the objects for (top, left, bottom, right).
56+ All items in the container that are not positioned on a border will fill the remaining space.
57+
58+ {{% layout name="border" %}}
59+
5260### Center
5361
5462Center layout positions all container elements in the center of the container.
@@ -84,22 +92,6 @@ Often used in file managers or image thumbnail lists.
8492
8593{{% layout name="gridwrap" %}}
8694
87- ### Border
88-
89- Border layout supports positioning of items at the outside of available space.
90- The border is passed pointers to the objects for (top, left, bottom, right).
91- All items in the container that are not positioned on a border will fill the remaining space.
92-
93- {{% layout name="border" %}}
94-
95- ### Stack (was Max)
96-
97- Stack layout positions all container elements to fill the available space.
98- The objects will all be full-sized and drawn in the order they were added
99- to the container (last-most is on top).
100-
101- {{% layout name="max" %}}
102-
10395### Padded
10496
10597Padded layout positions all container elements to fill the available space
@@ -113,6 +105,21 @@ You can also specify each site separately using `CustomPadded` layout.
113105
114106{{% layout name="custompadded" %}}
115107
108+ ### RowWrap
109+
110+ RowWrap layout arranges a set of different items to flow along a row, wrapping to a new row if there is insufficient space.
111+ All objects will be set to their minimu size, and will be bottom aligned to a consistent position leaving space for the tallest item.
112+
113+ {{% layout name="rowwrap" %}}
114+
115+ ### Stack (was Max)
116+
117+ Stack layout positions all container elements to fill the available space.
118+ The objects will all be full-sized and drawn in the order they were added
119+ to the container (last-most is on top).
120+
121+ {{% layout name="max" %}}
122+
116123## Combining Layouts
117124
118125It is possible to build up more complex application structures by using multiple layouts.
0 commit comments