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,9 +30,11 @@ struct AppRowView: View {
.font(.callout)
.foregroundColor(.secondary)
RatingStars(rating: 4)
.frame(height: 12)
.foregroundColor(.secondary)
if false {
RatingStars(rating: 4)
.frame(height: 12)
.foregroundColor(.secondary)
}
}
.lineLimit(1)