Open J-Arji opened 7 years ago
Hi @J-Arji at the moment RangeUISlider doesn't support vertical orientation. Anyway this could be a good idea for a new feature. I will work on it in the next weeks.
Thanks, Fabrizio.
thank you
have you tried approaching this problem with a simple affine transform?
what happens if you simply add a 90° rotation to an instance of RangeUISlider
? i remember it working fine for the generic UISlider
e.g. (translating to swift shouldn't be too hard)
UISlider *slider = [[UISlider alloc] init];
slider.transform = CGAffineTransformMakeRotation(-M_PI * .5f);
hi how can use rangeSlider as vertical? thanks