AppRowView: Disable ratings if there aren't any ratings

This commit is contained in:
naturecodevoid
2023-02-19 07:57:29 -08:00
parent 19e66112dd
commit 49b9be160f

View File

@@ -30,10 +30,12 @@ struct AppRowView: View {
.font(.callout) .font(.callout)
.foregroundColor(.secondary) .foregroundColor(.secondary)
if false {
RatingStars(rating: 4) RatingStars(rating: 4)
.frame(height: 12) .frame(height: 12)
.foregroundColor(.secondary) .foregroundColor(.secondary)
} }
}
.lineLimit(1) .lineLimit(1)
Spacer() Spacer()