flutter_rating_bar
flutter_rating_bar copied to clipboard
Create view only ratings
Sometimes there are scenarios where you only want to display the ratings without necessarily making them interactive. It will be good to have a view only rating.
Use RatingBarIndicator() which is a buildin widget.
RatingBarIndicator( rating: rating, itemSize: itemSize, itemBuilder: (context, index) => Icon( Icons.star, color: Colos.red, ));
Use RatingBarIndicator() which is a buildin widget.
RatingBarIndicator( rating: rating, itemSize: itemSize, itemBuilder: (context, index) => Icon( Icons.star, color: Colos.red, ));
Hi, that's what I am currently using now. But the problem to me is, I want to have different icon for the empty rating stars. Is it possible to do it with RatingBarIndicator? I mean I need something like the image and also i need a decimal point rating as well, for example 3.8 or 2.2 :
can you please help me in this regard?