Hey, I got the same issue.
This issue only affects users with the Apple Watch Series 10.
The crash happens whenever ProgressView() appears in the UI.
It occurs specifically at _UIGraphicsBeginImageContextWithOptions.
To fix this issue, upgrade your build mac to Xcode 16 if possible.
If you can't, you can use the following workaround.
if #available(watchOS 11.0, *) {
EmptyView()
} else {
ProgressView()
.tint(Color.accentColor)
}
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: