SwiftUI Gauge repeating current value instead of showing image

I have created a SwiftUI Gauge for use in a ClockKit Complication, but I am not specifying a minimumValueLabel or a maximumValueLabel - This results in the currentValueLabel being shown both in the centre of the gauge and at the bottom. The Image that I specified is not shown:

Code Block
@State var value:Double = 75
var body: some View {
         Gauge(value: capacity, in: 0...100) {
            Image(systemName: "square.and.arrow.up")
.foregroundColor(self.endColour)
        } currentValueLabel: {
          Text("\(value, specifier: "%.1f")")
        }.gaugeStyle(CircularGaugeStyle(tint: Gradient(colors: [.orange,.green])))
}


Can anyone else confirm this? Is it a bug?
Answered by Apple Staff in 616314022
This will be resolved in a later beta.
Accepted Answer
This will be resolved in a later beta.
Is this bug affecting ProgressView also? I can't get the image to appear.

Code Block
    var body: some View {
        VStack {
            Gauge(value: 2, in: 1...7) {
                Image(systemName: "music.note")
            } currentValueLabel: {
                Image(systemName: "music.note")
            } minimumValueLabel: {
                Text("1")
            } maximumValueLabel: {
                Text("7")
            }
            .gaugeStyle(CircularGaugeStyle())
            ProgressView(value: 0.7) {
                Image(systemName: "music.note")
            }
            .progressViewStyle(
                CircularProgressViewStyle(tint: .red)
            )
}
}


The image successfully loads in the Gauge, but not in ProgressView.
I'm still experiencing this issue with the latest Beta 7. Any suggestions or still sit tight?
SwiftUI Gauge repeating current value instead of showing image
 
 
Q