I’m building an app in Adalo where I need to display content in a tiered format. I want to prioritize higher tiers, so if Tier 1 has content, it should be shown. But if Tier 1 is empty, I want Tier 2 to take its place, and so on. Essentially, I’m looking for a way to dynamically adjust the visibility of each tier based on the content available in the tiers above it.
I got this to work just fine in the web app and on IOS using conditional visibility, however, I’m not able to get it to work correctly on android.
I have 4 horizontal lists each representing a tier. If a list item is both in tier 1 and tier 4 and not on tier 2 or 3, it would leave a large empty space (where the empty tier 2 and 3 horizontal list would be) on android. Like i said before, that is not the case on IOS and the webapp where it would show the horizontal list of tier 1, and right below it tier 4.
Is there a bug with the android build, or am i missing something? Is there a work around?