CodeBeam.MudBlazor.Extensions
CodeBeam.MudBlazor.Extensions copied to clipboard
MudAnimation: Control the Initialized State
Hi, I have a problem with the MudAnimation service. The animation is started when the page is initialized. I would like to prevent that. The animation should only start after a timer has expired. I have made a sample for this. What have I done wrong?
Best Regards
Hi,
MudAnimate started when initialized by default. Probably we need to add a parameter like StartOnInitialize to control that.
For a workaround, you can set Paused="true", so it doesn't start directly, then you can set it false when your timer expired.
Hi, that works, but I wonder why I need to use "await Task.Delay(1000)" to make it work.

Hmm no idea for now need to see code