rating_summary 1.0.0 copy "rating_summary: ^1.0.0" to clipboard
rating_summary: ^1.0.0 copied to clipboard

Create a summary statistic Widget to display the rating and average rating of a product.

Rating Summary Widget #

Create a summary statistic Widget to display the rating and average rating of a product.

Screenshot of the raring summary widget with the average rewiew indicator Screenshot of the raring summary widget without the average rewiew indicator

Installing: #

  1. Add the dependency in your pubspec.yaml file.
dependencies:
  rating_summary: ^1.0.0
  1. Import the rating_summary package.
import 'package:rating_summary/rating_summary.dart';

Usage #

RatingSummary(
  counter: 13,
  average: 3.846,
  showAverage: true,
  counterFiveStars: 5,
  counterFourStars: 4,
  counterThreeStars: 2,
  counterTwoStars: 1,
  counterOneStars: 1,
)

Parameters #

Parameter Description Type Default Required
counter The total number of ratings. int -
average The average rating. double 0.0
showAverage Show the average rating indicator. bool true
averageStyle The style of the average rating indicator. TextStyle TextStyle(fontWeight: FontWeight.bold, fontSize: 40)
counterFiveStars The number of 5 star ratings. int 0
counterFourStars The number of 4 star ratings. int 0
counterThreeStars The number of 3 star ratings. int 0
counterTwoStars The number of 2 star ratings. int 0
counterOneStars The number of 1 star ratings. int 0
label The label of the rating summary. String "Rating"
labelStyle The style of the label. TextStyle TextStyle(fontWeight: FontWeight.w600)
color The primary color of the rating summary. Color Colors.amber
backgroundColor The background color of the rating summary. Color Color(0xFFEEEEEE)
43
likes
0
pub points
91%
popularity

Publisher

verified publisherflo-dev.me

Create a summary statistic Widget to display the rating and average rating of a product.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_rating_bar

More

Packages that depend on rating_summary