<!--
{
  "availability" : [
    "iOS: 13.0.0 -",
    "iPadOS: 13.0.0 -",
    "macCatalyst: 13.0.0 -",
    "macOS: 10.15.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 6.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SwiftUI",
  "identifier" : "/documentation/SwiftUI/Slider/init(value:in:onEditingChanged:)",
  "metadataVersion" : "0.1.0",
  "role" : "Initializer",
  "symbol" : {
    "kind" : "Initializer",
    "modules" : [
      "SwiftUI"
    ],
    "preciseIdentifier" : "s:7SwiftUI6SliderVA2A9EmptyViewVRszAERs_rlE5value2in16onEditingChangedACyA2EGAA7BindingVyqd__G_SNyqd__GySbctcSBRd__SB6StrideRpd__lufc"
  },
  "title" : "init(value:in:onEditingChanged:)"
}
-->

# init(value:in:onEditingChanged:)

Creates a slider to select a value from a given range.

```
nonisolated init<V>(value: Binding<V>, in bounds: ClosedRange<V> = 0...1, onEditingChanged: @escaping (Bool) -> Void = { _ in }) where V : BinaryFloatingPoint, V.Stride : BinaryFloatingPoint
```

## Parameters

`value`

The selected value within `bounds`.

`bounds`

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

`onEditingChanged`

A callback for when editing begins and ends.

## Discussion

The `value` of the created instance is equal to the position of
the given value within `bounds`, mapped into `0...1`.

The slider calls `onEditingChanged` when editing begins and ends. For
example, on iOS, editing begins when the user starts to drag the thumb
along the slider’s track.

---

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)