The rating component is used to represent a score as an exact number.
BPKRating( title: "Excellent", value: 4.5, ratingScale: .zeroToFive, size: .default, subtitle: "1,532 reviews", showScale: true ).accessibilityLabel("Rated Excellent, 4.5 out of 5. Base on 1,532 reviews")
it's a must to have .accessibilityLabel("")
BPKRating( title: "Excellent", value: 4.5 )
BPKRating( value: 4.5, ratingScale: .zeroToFive, size: .default, subtitle: "1,532 reviews", showScale: true ) { Image("backpack-logo-horizontal") .resizable() .frame(width: 110, height: 24) .aspectRatio(contentMode: .fit) }.accessibilityLabel("4.5 out of 5. Base on 1,532 reviews")