diff --git a/mobile/lib/presentation/widgets/asset_viewer/rating_bar.widget.dart b/mobile/lib/presentation/widgets/asset_viewer/rating_bar.widget.dart index 08a9a05d67..4e42c5ba4a 100644 --- a/mobile/lib/presentation/widgets/asset_viewer/rating_bar.widget.dart +++ b/mobile/lib/presentation/widgets/asset_viewer/rating_bar.widget.dart @@ -90,7 +90,11 @@ class _RatingBarState extends State { int index = i ~/ 2; bool filled = _currentRating > index; return widget.itemBuilder ?? - Icon(Icons.star, size: widget.itemSize, color: filled ? widget.filledColor : widget.unfilledColor); + Icon( + Icons.star_rounded, + size: widget.itemSize, + color: filled ? widget.filledColor : widget.unfilledColor, + ); }), ), ),