Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Raty | 2,332 | 4 months ago | 60 | mit | JavaScript | |||||
:star2: Raty - A Star Rating Plugin | ||||||||||
Smileyrating | 1,003 | 3 years ago | 1 | June 18, 2019 | 7 | apache-2.0 | Java | |||
SmileyRating is a simple rating bar for android. It displays animated smileys as rating icon. | ||||||||||
React Native Star Rating | 735 | 220 | 36 | 2 years ago | 11 | September 10, 2018 | 48 | JavaScript | ||
A React Native component for generating and displaying interactive star ratings | ||||||||||
Edstarrating | 425 | 71 | 6 years ago | 3 | March 24, 2015 | 18 | Objective-C | |||
Configurable Star Rating control for iOS and OSX | ||||||||||
React Star Rating Component | 322 | 360 | 33 | 4 years ago | 10 | March 04, 2018 | 19 | mit | JavaScript | |
Basic React component for star (or any other icon based) rating elements | ||||||||||
Vue Rate | 213 | 9 | a year ago | 26 | May 16, 2022 | 1 | mit | Vue | ||
Rate component for Vue | ||||||||||
Material Ui Rating | 90 | 40 | 2 | 6 months ago | 21 | August 14, 2019 | 1 | mit | JavaScript | |
Rate something with style. | ||||||||||
Angular Input Stars | 76 | 5 | 1 | 5 years ago | 1 | April 28, 2016 | 7 | HTML | ||
Create rating inputs easily | ||||||||||
Heartrate | 73 | a year ago | 1 | mit | C# | |||||
Bluetooth heart rate monitor | ||||||||||
Css Star Rating | 65 | 92 | 5 | 7 months ago | 16 | June 06, 2022 | 9 | mit | SCSS | |
Css Star Rating is a css only star rating lib based on best practice UX/UI methodes. It is written in scss and fully customizable. |
A configurable star rating control for OSX and iOS, similar to those found in iTunes and the App Store.
###Installation
The easiest way to install EDStarRating is via CocoaPods. Add this line to your Podfile:
pod 'EDStarRating'
and run pod install
.
You can also install it manually by copying these two files to your project: EDStarRating.h and EDStarRating.m
In order to use EDStarRating, you can instantiate it programmatically, or create a custom view in Interface Builder and assign it to an ivar of your app. Once you have an instance, you can use the control properties to configure it.
Example:
starRating.starImage = [NSImage imageNamed:@"star.png"];
starRating.starHighlightedImage = [NSImage imageNamed:@"starhighlighted.png"];
starRating.maxRating = 5.0;
starRating.delegate = self;
starRating.horizontalMargin = 12;
starRating.editable=YES;
starRating.displayMode=EDStarRatingDisplayFull;
starRating.rating= 2.5;
If you pass to the control a template UIImage (created using rendering mode (UIImageRenderingModeAlwaysTemplate), EDStarRating will tint that image using the control's tintColor property.
This control should work in ARC and not ARC projects. On OS X 10.6+ and iOS 4.x+. But it's only tested it with ARC enabled in 10.8+ and iOS 6.0+. Let me now if it works fine for you in other environments.
BSD License. Copyright (c) 2014, Ernesto García All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The star icons and backgrounds used in the sample have been created by Dan Deming-Henes .