- Cleaned up deprecation warnings.
- Migrate to null safety.
- FIXED user could rate below
minRating
on tap mode Issue #40. - IMPROVEMENT user can rate half values in tap mode too (previously it was only possible with drag gesture) Issue #36.
- Exposed
wrapAlignment
property forRatingBar
Issue #28.
Breaking Changes
RatingBar
is divided into RatingBar()
and RatingBar.builder()
.
- Tapping on the first rating item will reset the rating to 0, if the current rating is 1. Issue #33
- Added
updateOnDrag
flag for RatingBar widget. - FIXED
unratedColor
not working for colors with alpha Issue #15.
- Added
minRating
andmaxRating
properties toRatingBar
.
- FIXED Issue with scrollable views Issue #18.
- FIXED
unratedColor
not working for colors with alpha Issue #15.
Breaking Changes
This version requires flutter >= 1.9
.
- Removed
alpha
property, as alpha vale can be provided directly withunratedColor
. - Adjusted some default behaviours for size and unratedColor.
- FIXED Issue while using RatingWidget in RTL mode.
- Improved dart docs
- Fixed Issue with
unratedColor
being null. Issue #13 & #14 - Fixed
alpha
property behaving in opposite manner.
- Added
unratedColor
property. Issue #12
Breaking Changes
FlutterRatingBar
is renamed toRatingBar
andFlutterRatingBarIndicator
toRatingBarIndicator
.itemBuilder
is introduced. Now you can use any widget as items with Rating Bar.- Improved RTL Mode.
- Vertical Mode.
- Glow while rating.
- FIXED Rating Indicator not switching to RTL mode.
- FIXED Issue #2.
- ignoreGestures property added to FlutterRatingBar as per #1 by @Skquark.
- tapOnlyMode property added to FlutterRatingBar.
- Readme updated with customization images and links to api docs.
- FlutterRatingBar is also fully customizable as Indicator now.
- Readme updated with customization examples.
- Dart-complaint docs added.
- [Breaking Change] size property in FlutterRatingBar is changed to itemSize for the sake of consistency.
- Initial release