Closed DanDolog closed 1 year ago
@yonat It will also be very cool to add Thumbs customization by setting UIView and not UIImage
To change snap view, you can do:
for snapView in multiSlider.snapViews {
snapView.alpha = 0.5 // or whatever change you want
}
For the thumb views, you can do:
multiSlider.thumbViews[0].image = someImage
multiSlider.thumbViews[1].image = anotherImage
Description: Nice slider. I just ran into the problem that there is no way for normal customization of Snap views
Problems I encountered when trying to implement this myself: I tried adding UIImage:
Result (not very good):
It would be cool to add normal customization of SnapViews by exposing a UIView or something like that. Thanks in advance!