<!--
{
  "availability" : [
    "iOS: 16.0.0 -",
    "iPadOS: 16.0.0 -",
    "macCatalyst: 16.0.0 -",
    "macOS: 13.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 7.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SwiftUI",
  "identifier" : "/documentation/SwiftUI/Gauge/init(value:in:label:currentValueLabel:minimumValueLabel:maximumValueLabel:markedValueLabels:)",
  "metadataVersion" : "0.1.0",
  "role" : "Initializer",
  "symbol" : {
    "kind" : "Initializer",
    "modules" : [
      "SwiftUI"
    ],
    "preciseIdentifier" : "s:7SwiftUI5GaugeV5value2in5label17currentValueLabel07minimumhI007maximumhI006markedH6LabelsACyxq_q0_q1_Gqd___SNyqd__GxyXEq_yXEq0_yXEq0_yXEq1_yXEtcSBRd__lufc"
  },
  "title" : "init(value:in:label:currentValueLabel:minimumValueLabel:maximumValueLabel:markedValueLabels:)"
}
-->

# init(value:in:label:currentValueLabel:minimumValueLabel:maximumValueLabel:markedValueLabels:)

Creates a gauge representing a value within a range.

```
nonisolated init<V>(value: V, in bounds: ClosedRange<V> = 0...1, @ContentBuilder label: () -> Label, @ContentBuilder currentValueLabel: () -> CurrentValueLabel, @ContentBuilder minimumValueLabel: () -> BoundsLabel, @ContentBuilder maximumValueLabel: () -> BoundsLabel, @ContentBuilder markedValueLabels: () -> MarkedValueLabels) where V : BinaryFloatingPoint
```

## Parameters

`value`

The value to show in the gauge.

`bounds`

The range of the valid values. Defaults to `0...1`.

`label`

A view that describes the purpose of the gauge.

`currentValueLabel`

A view that describes the current value of
the gauge.

`minimumValueLabel`

A view that describes the lower bounds of the
gauge.

`maximumValueLabel`

A view that describes the upper bounds of the
gauge.

`markedValueLabels`

A content builder containing tagged views.
each of which describes a particular value of the gauge.
The method ignores this parameter.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)