Using xcode 12.3, target macOS 11.1. I have the following test code showing the ProgressView as black not red as expected.
Is there a way to make the ProgressView a given color?
Is this another bug in SwiftUI?
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?