Releases: buh/CompactSlider
Releases · buh/CompactSlider
1.2.1
1.2.0
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0 Haptic Feedback
Haptic feedback
Haptic feedback will now be enabled by default for the snapped slider or for edge values. It can be disabled with the following modifier:
@State private var value = 0.5
var body: some View {
CompactSlider(value: $value, step: 0.1) {
Text("Int(value * 100)%")
}
.compactSliderDisabledHapticFeedback(true)
}
Demo app
Another custom style has been added to the demo app.
1.0.0
First release! 🚀
All in all, it turned out to be quite comprehensive, which I hadn't quite planned for. But in the process of writing documentation and various user requests I found some interesting improvements, which I decided to add to the first release as well.
I hope the slider will be useful to you!