func onDisappear (perform: (() -> Void)?) -> some View
Adds an action to perform when this view disappears.
あるアクションを加えて、このビューが姿を消す時に実行します。
func onChange <V>(of: V, perform: (V) -> Void) -> some View
Adds a modifier for this view that fires an action when a specific value changes.
ある修飾子をこのビューに対して加えます、それはあるアクションをある特定の値が変化する時に開始します。
func task(priority: TaskPriority , () async -> Void) -> some View
Adds an asynchronous task to perform when this view appears.
func task<T>(id: T, priority: TaskPriority , () async -> Void) -> some View
Adds a task to perform when this view appears or when a specified value changes.