aj11
6
This is also something I’ve looked for in the past and its annoying there’s not a transition setting for visibility. There are a couple solutions I’ve discovered.
-
You can write custom css that hides and shows elements in an animated way based on states. This is tricky though and took me weeks to get right in my app. I used Classify for this with good results, but it would be a lot of work to try and lay out step by step. Just search google for the correct css and use Classify in the states instead of regular visibility.
-
Instead of setting an element to visible when a state is set to something, you can use conditional triggers to animate in an element when the state is something and also to animate it out when the state is not that something anymore. I found this solution to be rough on performance, but it could work just fine depending on how often the element is used in your app.
1 Like