If I click to filter items in a collection list by updating a variable, the items in the collection list change instantly – there is no transition. What would be the best way to add a transition?
Hey @sprocketeer
Actually, the best way would be to use a time delay in a workflow before updating the variable, and while this delay is being executed, having some kind of animation take place.
You could have a workflow like this:
- User update variable
- Trigger delay
- Trigger animation while delay is running
- Stop delay
- Remove animation
- Update variable
Interesting approach, thank you!