From 6abbb64fa21434561434a63e860ccbc4aa4e91f4 Mon Sep 17 00:00:00 2001 From: Yaros Date: Tue, 13 Jan 2026 14:55:24 +0100 Subject: [PATCH] chore: switch to rounded star icons --- .../widgets/asset_viewer/rating_bar.widget.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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, + ); }), ), ),