UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

SwiftUI Slider Max Step

Forums > SwiftUI

I am having an issue when using a slider on WatchOS, that if the value between the max and min is too high, the animation breaks if the step is set to low.

Slider(value: $amountToAdd, in: -1500...1500, step: 10)

These seems odd since if you remove the step, its capable of going through the equivalent of 1 step with no issue.

Slider(value: $amountToAdd, in: -1500...1500)

Is there a way around this limitation, or is this a bug in swiftui with the slider? I do not see anything in the documentation that there is a limit.

3      

I'm not sure about WatchOS and the issue, however you could do this work around

struct ContentView: View {
    @State private var addAmount = 0.0

    var addedAmount: Int {
        Int(addAmount) * 10
    }

    var body: some View {
        VStack {
            Text("\(addedAmount)")

            Slider(value: $addAmount, in: -150...150)
        }
        .padding()
    }
}

3      

Hacking with Swift is sponsored by Essential Developer

SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until April 28th.

Click to save your free spot now

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.