clean-code-dev / animated_splash_screen

The easiest way to create your animated splash screen in a fully customizable way.
MIT License
112 stars 25 forks source link

Change Image Size #49

Closed FabioTambu closed 1 year ago

FabioTambu commented 1 year ago

Hi, I'm using your package and I ran into a problem. As a splash I have to use an image, but I noticed that it was too small, so I tried to make it bigger this way

return AnimatedSplashScreen(
          duration: 5000,
          splash: const Image(image: AssetImage('assets/images/logo_tefatech.png'), width: 200, height: 200),
          splashTransition: SplashTransition.fadeTransition,
          backgroundColor: Colors.blue,
          nextScreen: const CheckUserLogin()
      );

But it didn't work, could you tell me how I can fix it?

Hafsa-Awan commented 1 year ago

same here

ReAlign commented 1 year ago

Maybe:

splashIconSize: MediaQuery.of(context).size.height,