HCSStarRatingView
HCSStarRatingView copied to clipboard
Fill from right to left
hey is there a way to make it fill the stars from the other direction ( from right to left)???
Not right now, sorry. But this is definitely something I plan on supporting when I have a bit of time to give this project some real love again 🤞
@iCtz @hsousa
one line of code solve this
but in you'er library check semantic of app if right to left, then make transformation for HCSStarRatingView
that's my solution
Objective-c
self.rateView.transform = CGAffineTransformMakeScale(-1.0, 1.0);
swift
self.collectionView.transform = CGAffineTransform(scaleX: -1.0, y: 1.0)