You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The slider line layer is added to the RangeSeekSlider layer with 16 as the x value.
let barSidePadding: CGFloat = 16.0
I guess you didn't want to have the handle outside the slider or maybe so that the user can actually pass the touches.
I guess this need to be changed to handleDiameter/2.0
I am trying to add a custom labels and move them with the handles. the thing is this 16 static value messes with the calculations. I had to hard code this value in my code.
The text was updated successfully, but these errors were encountered:
maybe add padding parameter and the coder can change it.
note that handles are visible outside the slider when setting clip to bounds to false.
so there is no issue for the handles to be invisible. but all the concern is with the touches to get passed I guess.
maybe the best solution is to add padding as an IBInspectable and the "user" can change it.
The slider line layer is added to the RangeSeekSlider layer with 16 as the x value.
let barSidePadding: CGFloat = 16.0
I guess you didn't want to have the handle outside the slider or maybe so that the user can actually pass the touches.
I guess this need to be changed to handleDiameter/2.0
I am trying to add a custom labels and move them with the handles. the thing is this 16 static value messes with the calculations. I had to hard code this value in my code.
The text was updated successfully, but these errors were encountered: