conversations-classic-ios/old/View/UIToolkit/View+OnLoad.swift
2024-08-11 13:09:29 +02:00

28 lines
566 B
Swift

import SwiftUI
// MARK: - On load
extension View {
func onLoad(_ action: @escaping () -> Void) -> some View {
modifier(ViewDidLoadModifier(action))
}
}
private struct ViewDidLoadModifier: ViewModifier {
private let action: () -> Void
@State private var didLoad = false
init(_ action: @escaping () -> Void) {
self.action = action
}
func body(content: Content) -> some View {
content.onAppear {
if !didLoad {
didLoad.toggle()
action()
}
}
}
}