How to add splash screen and animated ui in audio plugin?

How to add splash screen (not the Juce splash screen), but the splash screen before we get into main ui. And how to add animated resources ?

JUCE provides a juce::SplashScreen for doing just this.

You can add any resource via the Projucer, which will turn it into binary data that will loaded into your app/plugin. You can use the BinaryData:: namespace to access the object’s data. The alternative is to straight up load juce::File instances + juce::FileInputStream and parse your data as needed.

That being said, you’re outta luck when it comes to animations with JUCE; there are no mechanisms in this framework that will help you with this. You’ll need to roll your own solution.

Thanks for the reply

Are you have the code. So i can see the implementation in action