ProgressView not showing with expected color in macOS 11

Using xcode 12.3, target macOS 11.1. I have the following test code showing the ProgressView as black not red as expected.

Code Block
struct ContentView: View {
var body: some View {
HStack {
Spacer()
ProgressView().progressViewStyle(CircularProgressViewStyle(tint: .red))
Spacer()
}.frame(width: 333, height: 333)
}
}

Is there a way to make the ProgressView a given color?
Is this another bug in SwiftUI?

Replies

Any updates on this?
I tested on Xcode 12.4 but MacOS 10.15.7

Progress indicator (the small wheel) is red.