Skip to content

Instantly share code, notes, and snippets.

@Matt54
Created March 11, 2025 23:45
Show Gist options
  • Save Matt54/79f78eca1c9ae62df1c463526dbd439f to your computer and use it in GitHub Desktop.
Save Matt54/79f78eca1c9ae62df1c463526dbd439f to your computer and use it in GitHub Desktop.
SwiftUI Slider Reskin
import SwiftUI
struct ContentView: View {
@State var sliderValue: Double = 0.5
var body: some View {
CustomSlider(value: $sliderValue)
}
}
struct CustomSlider<V: BinaryFloatingPoint>: View where V.Stride: BinaryFloatingPoint {
@Binding var value: V
var body: some View {
Slider(value: $value)
.overlay(
GeometryReader { proxy in
ZStack(alignment: .leading) {
RoundedRectangle(cornerRadius: proxy.size.height*0.5)
.fill(Color.init(white: 0.75))
.overlay(
RoundedRectangle(cornerRadius: proxy.size.height*0.5)
.stroke(Color.init(white: 0.5), lineWidth: 1)
)
RoundedRectangle(cornerRadius: proxy.size.height*0.5)
.fill(.blue)
.frame(width: (proxy.size.width-proxy.size.height) * CGFloat(self.value) + proxy.size.height)
Circle()
.fill(.white)
.padding(1)
.offset(x: (proxy.size.width-proxy.size.height) * CGFloat(self.value))
}
}
.allowsHitTesting(false)
)
}
}
#Preview {
ContentView()
.padding()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment