I'm building a menu using a gallery. Everything works just fine, except one thing. I added a rectangle as a separator, but I would like to "hide" it on the very last row. The way I'm trying to do this is by playing with the Fill property of the rectangle:
Fill: If(ThisItem = Last(Gallery2.AllItems), Transparent,ColorValue("#04a6eb40"))
I guess I could do something similar with the Visible property.
Is this possible to achieve?
Thanks.