Has anyone found a good way to turn a vertical scroll repeating group into a horizontal one when on mobile?
I know I can just use a different repeating group and have it hidden, but is there a better away? Ideally, all I want to do is just shift from vertical and horizontal when the page is below a certain width.
I’m facing the same issue on my app and would like to know whether or not bubble found a better solution. For example, on normal desktop browsers I would like to have my RG displayed in vertical scroll direction but once I change my browser size to a mobile then on a condition changing RG from vertical scroll direction to horizontal.
It’s not perfect, but a solution to this is to have a condition where if the current page width is less than 700, for example, then you swap the number of rows and columns.
So if on desktop it’s 1 row and 5 columns, you can change it so that now on mobile it’ll be 5 columns and 1 row. This isn’t great for repeating groups where you want to display infinite amounts of data (since it limits it to 5 columns in the example), but this solution has worked for my use cases.