I would like to create a splash screen for an application created with flutter.
I already have tried the flutter_native_splash package, but the problem is that I need two logos in the splash.
The first one should centered, and it will be the original logo of the application, while the second one will be a Text something like Powered by someone.
You can see an example here:
I know that I can create the whole Image as splash screen but I don’t see it as the most proper way to do it.
Are there any ideas?
3
Answers
Finally,
I saw that the flutter_native_splash package added a feature that gives you a way to add a branding in your launch theme.
You can follow their documentation to achieve the exact same result as the uploaded screenshot in the question.
Their steps:
Add a flutter_native_splash.yaml file under your app's folder
Add the logo and the branding(Powered by) images inside your assets
Add the following code inside your flutter_native_splash.yaml file
Try this
Splash screen is naturally implemented in native side, so the modifications will be done there too.
iOS / Apple
Android
See Adding a splash screen to your mobile app for details.