Initializer

init(_:isExpanded:content:)

Creates a disclosure group, using a provided string to create a text view for the label, and a binding to the expansion state (expanded or collapsed). 開示グループを作成します、提供された文字列を使ってテキストビューをラベルに対して、そしてバインディングを展開状態(展開されたまたは折りたたまれた)に対して作成します。

Declaration 宣言

init<S>(_ label: S, isExpanded: Binding<Bool>, content: @escaping () -> Content) where S : StringProtocol
Available when Label is Text and Content conforms to View. LabelTextであるそしてContentViewに準拠する場合に利用可能です。

Parameters パラメータ

label

A description of the content of the disclosure group. 開示グループの内容の記述。

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. 開示グループが展開する時に示される内容。

See Also 参照

Creating a Group with a String Label