So I have an app, when pressing submit, a flow starts that adds to that user a security role.
I want, after pressing submit, to show a spinner loading that stops after the flow or the security role is added.
How can I do that?

So I have an app, when pressing submit, a flow starts that adds to that user a security role.
I want, after pressing submit, to show a spinner loading that stops after the flow or the security role is added.
How can I do that?
Hi @Robert94 ,
You could try this method:
1\Set the submit button's OnSelect property to:
Set(ShowSpinner,true);
Run.FlowName();
Set(ShowSpinner,false);
2\ Set the spinner's visible property to:
ShowSpinner
Best Regards,
Bof