feat: Replace star rating icons with a new SVG asset in the top professionals section.
This commit is contained in:
@@ -484,15 +484,13 @@ class _TopProfessionalsSectionState
|
||||
|
||||
// Star Rating
|
||||
Row(
|
||||
children: List.generate(5, (i) {
|
||||
children: List.generate(rating.round().clamp(0, 5), (i) {
|
||||
return Padding(
|
||||
padding: const EdgeInsets.only(right: 4),
|
||||
child: Icon(
|
||||
i < rating.round()
|
||||
? Icons.star_rounded
|
||||
: Icons.star_outline_rounded,
|
||||
color: const Color(0xFFE5A625),
|
||||
size: 24,
|
||||
child: SvgPicture.asset(
|
||||
'assets/icons/star_filled_icon.svg',
|
||||
width: 18,
|
||||
height: 17,
|
||||
),
|
||||
);
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user