swiftui-sliders icon indicating copy to clipboard operation
swiftui-sliders copied to clipboard

:rocket: SwiftUI Sliders with custom styles

Results 18 swiftui-sliders issues
Sort by recently updated
recently updated
newest added

Sets the minimum distance to 0, so fine adjustments are possible Makes the selectUpper/selectLower gestures simultaneous so they won't delay the dragging. There might need to be some logic here...

Thanks for this project, can you add the step property, for example, adding five for each step or movement?

Given: ```Swift Slider(value: $v1, in: 1...10, step: 2, onEditingChanged: { _ in }) Text("Slider: \(v1)") ValueSlider(value: $v2, in: 1...10, step: 2, onEditingChanged: { _ in }) .frame(height: 30) Text("ValueSlider: \(v2)")...

It would be great to be able to set a minimumDistance (DragGesture) for the RangeSlider.

Is there an example repo with the different sliders? I'm interested in recreating this slider specifically:

Hi, thanks for creating such a customizable control! Sometimes it is helpful to have more precise step adjustments, such as 0.1 if 0.5 was the step value. Would it be...

Love the project! Wondering (as my title suggests) if there are any other examples usages of this library or documentation somewhere? I've successfully hacked my way to getting a value...