HCSStarRatingView icon indicating copy to clipboard operation
HCSStarRatingView copied to clipboard

Fill from right to left

Open iCtz opened this issue 7 years ago • 2 comments

hey is there a way to make it fill the stars from the other direction ( from right to left)???

iCtz avatar Jan 30 '18 22:01 iCtz

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 🤞

hsousa avatar Apr 23 '18 14:04 hsousa

@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)

adelbios avatar May 29 '19 22:05 adelbios