Structure

LazyVStack

A view that arranges its children in a line that grows vertically, creating items only as needed.

Declaration 宣言

struct LazyVStack<Content> where Content : View

Overview 概要

The stack is “lazy,” in that the stack view doesn’t create items until it needs to render them onscreen.

In the following example, a ScrollView contains a LazyVStack that consists of a vertical row of text views. The stack aligns to the leading edge of the scroll view, and uses default spacing between the text views.


ScrollView {
    LazyVStack(alignment: .leading) {
        ForEach(1...100, id: \.self) {
            Text("Row \($0)")
        }
    }
}

Topics 話題

Creating a Lazy-Loading Vertical Stack

Supporting Types 支援を行う型

Default Implementations 省略時実装

Relationships 関係

Conforms To 次に準拠

See Also 参照

Lazy Stacks