Transition results in a collection list

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 :wave:

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:

  1. User update variable
  2. Trigger delay
  3. Trigger animation while delay is running
  4. Stop delay
  5. Remove animation
  6. Update variable

Interesting approach, thank you!