Initializer

init(_:isExpanded:content:)

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

Declaration 宣言

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

Parameters パラメータ

titleKey

The key for the localized label of self that describes 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