@pilger
Quick Tip: SwiftUI's View Concurrency Changes
The View protocol in SwiftUI is now annotated with @MainActor.
Starting with iOS 18, if you have async functions in your view, they will run on the main actor instead of the global executor on a background thread.
#wwdc24 #swiftui