To arrange components horizontally or vertically using flowLayout or stackLayout:
The flowLayout node or stackLayout node is inserted and highlighted under the expanded parent node.
...
<pageLayout>
...
<!-- Arrange flowLayout child components (horizontal) -->
<flowLayout>
<contents>
<image/>
<image/>
</contents>
</flowLayout>
<!-- Arrange stackLayout child components (vertical)-->
<stackLayout>
<contents>
<image/>
<image/>
</contents>
</stackLayout>
...
<!-- REST OF PAGE LAYOUT -->
</pageLayout>
...
About FlowLayout and StackLayout
About Spacer and Separator
Inserting a Spacer or Separator
Line Between Components in a FlowLayout or StackLayout
Working with Layout Components
Copyright © 1997, 2004, Oracle. All rights reserved.