How do I modify a SwiftUI Gauge so that it fills the parent View completely?

Hello,
I want to use the Gauge View with circular style not only in my app's complications but also in the watchOS app. When I put the Gauge in my View it just sits right in the middle and I cannot figure out how to scale it up.
  • .resizable() is not available.

  • .scaledToFill() and .scaledToFit()don't do anything

  • .scaleEffect(3) makes the Labels blurry

Code Block
Gauge(value: 0.5, in: 0...1,
      label: { Text("Gauge") },
      currentValueLabel: { Text("0.5") },
      minimumValueLabel: { Text("0") },
      maximumValueLabel: { Text("1") }
).gaugeStyle(CircularGaugeStyle())

What am I missing?

How do I modify a SwiftUI Gauge so that it fills the parent View completely?
 
 
Q