Hello Bubble! I’d love to see the possibility to add row/column gap to repeating groups.
Currently, if I want to have a 10px margin between each cell, my only option is to add 10px bottom-margin and add a condition to exclude the last cell with a condition such as: Current cell's index is Current Page's Users:count —> Bottom-margin: 0px
This is a minor thing (of course), but it would still be nice to have
… I can also add what I believe is a better expression to handle the exclusion of the last cell in the list: Current cell's index is RepeatingGroup's List of Users:count —> Bottom-margin: 0px
If you are setting an RG to have a fixed number of rows/columns, my method is to wrap each cell in a group, then add internal padding to that group. That keeps it evenly spaced and is incredibly simple to implement. This also helps if you don’t have a definitive height/width for each RG Line.
If you’re not setting a fixed number of rows/columns and have a fixed height/width you can achieve the same by setting the min-height or min-width of each.
Honestly though, both of the above seem pretty interchangeable with your own method (which I have also used!).