How do I create the correct star icon rating?

Yes of course, everything is possible with WeWeb, the question is how :sunglasses:

I did it for you :point_down:

  1. Create a block of 5 stars by binding an array with 5 elements on a container

  1. Bind a formula to your star icon :
    if(myRate - starIndex >= 1, "full-star-icon", if(myRate - starIndex >= 0.5,"half-star-icon","empty-star-icon"))

You’re done :slight_smile:

5 Likes