outer()
Defines the outer container for the list items.
outer(container: ViewBuilder | undefined): this;
Notes
- If this method is not called, the list items will be rendered in a plain column container.
- You can pass a scroll view as the outer container, in which case the list items will be rendered within the scroll view’s content container.
Parameters
- container — A view builder for the outer container (e.g.,
UI.Column(),UI.Row()).
Return value
The builder instance for chaining.
Related
class ListBuilder static
A builder class for creatingUIListViewinstances.
