I seem to be having an issue where certain symbol effect animations are not working. Using symbol effect .appear, .drawOn .drawOff seems to cause the symbol to not display at all.
Am I using this code correctly if I want to have a simple animate repeatedly on display?
Specifically, modifying the Multiplatform app template in xcode:
Image(systemName: "ellipsis")
.font(.title)
.foregroundColor(.blue)
.symbolEffect(.drawOn.byLayer, options: .repeat(.continuous))
I'm currently on the latest release on Xcode/macOS and iOS/macOS on client. Both iOS and macOS seem affected. The project is multiplatform and only support macOS/iOS 26.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I seem to be unable to affect the color of a linear ProgressView() on macOS and need to know if this is a feature or a bug.
I have the following:
ProgressView(value: someProgress).tint(.green)
This works fine in iOS, the linear ProgressView changes to the desired color. On macOS the ProgressView stays the color of the system accent.
.progressViewStyle(LinearProgressViewStyle(tint: .blue))
Is available, but depreciated, or being depreciated.
I have also tried:
.tint(.red)
.accentColor(.green)
While I can understand the platform specific differences, the context that I'm using really would benefit from keeping the UI elements colored consistent with the app, rather than the OS. Also I can do it in iOS, why not macOS?
Both dev and test machines are running latest updates (Xcode 26.0.1/macOS 26.0.1 and iOS 26.0.1/macOS26.0.1)