mirror of
https://github.com/immich-app/immich.git
synced 2026-01-13 13:36:35 -08:00
chore: switch to rounded star icons
This commit is contained in:
@@ -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,
|
||||
);
|
||||
}),
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user