chore: switch to rounded star icons

This commit is contained in:
Yaros
2026-01-13 14:55:24 +01:00
parent 2055841693
commit 6abbb64fa2

View File

@@ -90,7 +90,11 @@ class _RatingBarState extends State<RatingBar> {
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,
);
}),
),
),