This is how my splash screen appears, so how can I make it that the logo is filling up the rounded circle shape, and how can i make it that so I can add a background image
Either you can use flutter_native_splash plugin for this operation or make a splash screen full manually from scratch. I have given an example here. ClipOval will make the image fully rounded and as we need background image I have set everything in a Stack widget. in initState I have called the navigation function which handles the navigation.
Try to write Code by yourself I will give you a basic idea about how this type of SplashScreens can be built.
First Take Scaffold
Make the Scaffold background color to the background color of your SplashScreen.
Then add a Center Widget in the body of the Scaffold
After that specify Container as a child of Center Widget
Now Decorate the Container by specifying background color, BorderRadius etc
Then place an image in the child of the Container.
Safearea ->
Scaffold ->
Center ->
Container ->
AssetImage or NetworkImage
3
Answers
If you want feedback based on the code you wrote,
you must attach that part of the code.
Or, if you can apply a completely new method,
use flutter_native_splash in the link below.
https://pub.dev/packages/flutter_native_splash
Either you can use flutter_native_splash plugin for this operation or make a splash screen full manually from scratch. I have given an example here. ClipOval will make the image fully rounded and as we need background image I have set everything in a Stack widget. in initState I have called the navigation function which handles the navigation.
Try to write Code by yourself I will give you a basic idea about how this type of SplashScreens can be built.
First Take Scaffold
Make the Scaffold background color to the background color of your SplashScreen.
Then add a Center Widget in the body of the Scaffold
After that specify Container as a child of Center Widget
Now Decorate the Container by specifying background color, BorderRadius etc
Then place an image in the child of the Container.