Initializer

init(isExpanded:content:label:)

Creates a disclosure group with the given label and content views, and a binding to the expansion state (expanded or collapsed). ある開示グループをこの与えられたラベルとコンテンツビューで作成します、そしてあるバインディングをその展開状態(展開されたまたは折りたたまれた)に対して作成します。

Declaration 宣言

init(isExpanded: Binding<Bool>, content: @escaping () -> Content, label: () -> Label)

Parameters パラメータ

isExpanded

A binding to a Boolean value that determines the group’s expansion state (expanded or collapsed). グループのもつ展開状態(展開されたまたは折りたたまれた)を決定するブール値へのあるバインディング。

content

The content shown when the disclosure group expands. 開示グループが展開する時に示される内容。

label

A view that describes the content of the disclosure group. あるビュー、それはその開示グループの内容を記述します。

See Also 参照

Creating a Group with a Label View