From 40e822fcb23e2cd00415f6350421443ef6ec8e40 Mon Sep 17 00:00:00 2001 From: Elham Rababah Date: Wed, 9 Sep 2020 18:06:48 +0300 Subject: [PATCH] fix splash_screen_page issue --- lib/pages/splash_screen_page.dart | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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, ) ], ),