Type Method 型メソッド

constant(_:)

Creates a binding with an immutable value. バインディングをある不変の値で作成します。

Declaration 宣言

static func constant(_ value: Value) -> Binding<Value>

Parameters パラメータ

value

An immutable value. 不変の値。

Discussion 議論

Use this method to create a binding to a value that cannot change. This can be useful when using a PreviewProvider to see how a view represents different values.


// Example of binding to an immutable value.
PlayButton(isPlaying: Binding.constant(true))

See Also 参照

Creating a Binding バインディングを作成する