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)
}
Post
Replies
Boosts
Views
Activity
I'm confused, too!
Still happens on Monterey 12.5.1, Xcode 13.4.1, iOS target 15.5
The TextField absorbs first return input and loses its focus state, second return input activates keyboardShortcut modifier.
This issue does not occur in iOS target 14.5. 🤷🏻