Home > other >  How can I create a complex Splashscreen with Flutter?
How can I create a complex Splashscreen with Flutter?

Time:04-29

I'm searching for a way to create a more complex splashscreen than just a icon and a backgroundcolor (for android). I how you can achieve that for iOS by editing the LaunchScreen.storyboard file, but how would you do that for android?

I'm looking for something like that:

enter image description here

As you see there isn't only a background and one image, there is also text at the bottom. Thanks in advance.

CodePudding user response:

the easiest way is to create an activity and add a delay before launching the main window, but this is a bad bad approach. in principle, you should not force the user to waste time on screensavers. However, Android apps take a certain amount of time to run, especially when running cold. There is a delay that you cannot avoid. This is exactly the approach Google stands for. namely, they use Splash Screen. you can see the sample code here enter image description here

  • Related