I’m trying to make bottom tabs for a native mobile app like Ionic has but not sure the most efficient way to go about it. Similar to the picture below
Which effect are you trying to get exactly? It’s a bit hard to see with the screenshot.
Just so I can navigate to different screens from the bottom nav bar, like how the Twitter mobile app is.
The best way to do this is to show/hide groups based on the user pressing on a button. A recommended approach here:
- create a custom state on the page element called ‘showing’ or something
- have the different groups visible or invisible using the conditional tab and checking the value of the custom state
- have buttons trigger workflows that change the value of the state (but don’t show/hide elements).
That way, it’s pretty clean and easy to maintain.
1 Like