Hide label after 2 seconds

What do you want to achieve?

I want to create an even when click on button that display label for 2 seconds and after that hide it.

Until now I do that using code

lv_timer_t * t = lv_timer_create(toggle_label_visibility, 2000, a_label);
v_timer_set_repeat_count(t, 1);

And in toggle_label_visibility I hide the lable.
How can I do that easily on squareline?

Others
**SquareLine Studio version: **
Newest

**Operating system: **
Windows 11

**Target hardware: *
esp32-2432s028

You can create an opacity animation, as the editor has no delay option, please see screenshot below:

I think delay need to be 2000 and time need to be 0