diff --git a/lib/pages/splash_screen_page.dart b/lib/pages/splash_screen_page.dart index 038b982..a18f077 100644 --- a/lib/pages/splash_screen_page.dart +++ b/lib/pages/splash_screen_page.dart @@ -34,7 +34,7 @@ class _SplashScreenPageState extends State { body: SingleChildScrollView( child: Center( child: Column( -// mainAxisAlignment: MainAxisAlignment.spaceBetween, + mainAxisAlignment: MainAxisAlignment.spaceEvenly, children: [ FractionallySizedBox( widthFactor: 0.80, @@ -49,16 +49,16 @@ class _SplashScreenPageState extends State { Container( child: Icon( DriverApp.logo, - size: 110, + size: 120, color: Colors.white, ), margin: EdgeInsets.only( right: projectViewModel.isArabic ? 0 - : MediaQuery.of(context).size.width * 0.15, + : MediaQuery.of(context).size.width * 0.20, left: !projectViewModel.isArabic ? 0 - : MediaQuery.of(context).size.width * 0.15), + : MediaQuery.of(context).size.width * 0.10), ), ], ), @@ -92,7 +92,7 @@ class _SplashScreenPageState extends State { ], ), SizedBox( - height: 280, + height: 100, ) ], ),