Initializer

init(_:isOn:)

Creates a toggle that generates its label from a localized string key.

Declaration 宣言

init(_ titleKey: LocalizedStringKey, isOn: Binding<Bool>)
Available when Label is Text. LabelTextである時に利用可能です。

Parameters パラメータ

titleKey

The key for the toggle’s localized title, that describes the purpose of the toggle.

isOn

A binding to a property that indicates whether the toggle is on or off.

Discussion 議論

This initializer creates a Text view on your behalf, and treats the localized key similar to init(_:tableName:bundle:comment:). このイニシャライザは、Textビューをあなたに代わって作成します、そしてローカライズされたキーをinit(_:tableName:bundle:comment:)に似たものと見なします。 See Text for more information about localizing strings.

To initialize a toggle with a string variable, use init(_:isOn:) instead.

See Also 参照

Creating a Toggle トグルを作成する