feat: Replace star rating icons with a new SVG asset in the top professionals section.
This commit is contained in:
3
assets/icons/star_filled_icon.svg
Normal file
3
assets/icons/star_filled_icon.svg
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
<svg width="18" height="17" viewBox="0 0 18 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M13.0421 16.2C10.4131 14.6565 7.15477 14.6565 4.52582 16.2C4.33771 16.3167 4.14104 16.3667 3.93583 16.35C3.73062 16.3333 3.55106 16.2667 3.39715 16.15C3.24324 16.0333 3.12354 15.8877 3.03803 15.713C2.95253 15.5383 2.93543 15.3423 2.98673 15.125C3.67865 12.2284 2.67742 9.18922 0.399321 7.27105L0.344628 7.225C0.173619 7.075 0.0669084 6.904 0.024498 6.712C-0.0179125 6.52 -0.00525779 6.33267 0.0624621 6.15C0.130182 5.96733 0.232788 5.81733 0.37028 5.7C0.507771 5.58267 0.695882 5.50767 0.934612 5.475L1.08051 5.46254C4.05535 5.20848 6.65005 3.34052 7.83486 0.6C7.92036 0.4 8.05306 0.25 8.23297 0.15C8.41287 0.0499999 8.59653 0 8.78396 0C8.97139 0 9.15505 0.0499999 9.33495 0.15C9.51486 0.25 9.64756 0.4 9.73306 0.6C10.9179 3.34052 13.5126 5.20848 16.4874 5.46254L16.6333 5.475C16.8727 5.50833 17.0608 5.58333 17.1976 5.7C17.3344 5.81667 17.4371 5.96667 17.5055 6.15C17.5739 6.33333 17.5869 6.521 17.5444 6.713C17.502 6.905 17.395 7.07567 17.2233 7.225L17.1686 7.27105C14.8905 9.18922 13.8893 12.2284 14.5812 15.125C14.6325 15.3417 14.6154 15.5377 14.5299 15.713C14.4444 15.8883 14.3247 16.034 14.1708 16.15C14.0169 16.266 13.8373 16.3327 13.6321 16.35C13.4269 16.3673 13.2302 16.3173 13.0421 16.2Z" fill="#FFDE21"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -484,15 +484,13 @@ class _TopProfessionalsSectionState
|
|||||||
|
|
||||||
// Star Rating
|
// Star Rating
|
||||||
Row(
|
Row(
|
||||||
children: List.generate(5, (i) {
|
children: List.generate(rating.round().clamp(0, 5), (i) {
|
||||||
return Padding(
|
return Padding(
|
||||||
padding: const EdgeInsets.only(right: 4),
|
padding: const EdgeInsets.only(right: 4),
|
||||||
child: Icon(
|
child: SvgPicture.asset(
|
||||||
i < rating.round()
|
'assets/icons/star_filled_icon.svg',
|
||||||
? Icons.star_rounded
|
width: 18,
|
||||||
: Icons.star_outline_rounded,
|
height: 17,
|
||||||
color: const Color(0xFFE5A625),
|
|
||||||
size: 24,
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}),
|
}),
|
||||||
|
|||||||
Reference in New Issue
Block a user