Initializer

init(selection:content:)

Creates a list with the given content that supports selecting a single row. あるリストをその与えられた内容で作成します、それは単一の行の選択をサポートします。

Declaration 宣言

init(selection: Binding<SelectionValue?>?, content: () -> Content)

Parameters パラメータ

selection

A binding to a selected row. 選択された行へのあるバインディング。

content

The content of the list. リストの内容。

Discussion 議論

On iOS and tvOS, you must explicitly put the list into edit mode for the selection to apply. To do that, either add an EditButton to your user interface, or modify the editMode value directly.

See Also 参照

Creating a List with Arbitrary Content