Return Value 戻り値
A view that triggers action
when the value for key
changes.
あるビュー、それはaction
をkey
に対する値が変化する時に引き起こすものです。
Availability 有効性
Technology
func onPreferenceChange<K>(_ key: K.Type = K.self, perform action: @escaping (K.Value) -> Void
) -> some View
where K : PreferenceKey
, K.Value : Equatable
A view that triggers action
when the value for key
changes.
あるビュー、それはaction
をkey
に対する値が変化する時に引き起こすものです。
key
The key to monitor for value changes. 値の変化を監視するキー。
action
The action to perform when the value for key
changes. The action
closure passes the new value as its parameter.
key
に対する値が変化する時に実行するアクション。action
クロージャは、新しい値をそれのパラメータとして渡します。