Description
A container view that you can use to add hierarchy to a list.
Parameters
header
: The text to display as the header of the section.footer
: The text to display as the footer of the section.Example
<body>
<list>
<section header="Section 1" footer="This is the first section">
<text>Item 1</text>
<text>Item 2</text>
</section>
<section header="Section 2" footer="This is the second section">
<text>Item 3</text>
<text>Item 4</text>
</section>
</list>
</body>