diff --git a/lib/views/splash/pages/d_splash_page.dart b/lib/views/splash/pages/d_splash_page.dart index 531b463..c3f44ef 100644 --- a/lib/views/splash/pages/d_splash_page.dart +++ b/lib/views/splash/pages/d_splash_page.dart @@ -42,7 +42,10 @@ class _DesktopSplashPageState extends State { Widget build(BuildContext context) { return Scaffold( body: Center( - child: Image.asset(AssetsManager.logoBigPng, fit: BoxFit.cover), + child: Padding( + padding: const EdgeInsets.symmetric(horizontal: 100), + child: Image.asset(AssetsManager.logoBigPng), + ), ), ); } diff --git a/lib/views/splash/pages/m_splash_page.dart b/lib/views/splash/pages/m_splash_page.dart index ea185e1..109b120 100644 --- a/lib/views/splash/pages/m_splash_page.dart +++ b/lib/views/splash/pages/m_splash_page.dart @@ -2,6 +2,7 @@ import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; import 'package:tm_app/core/constants/assets.dart'; import 'package:tm_app/core/routes/app_routes.dart'; +import 'package:tm_app/core/utils/size_config.dart'; import 'package:tm_app/view_models/auth_view_model.dart'; class MobileSplashPage extends StatefulWidget { @@ -45,7 +46,10 @@ class _MobileSplashPageState extends State { Widget build(BuildContext context) { return Scaffold( body: Center( - child: Image.asset(AssetsManager.logoBigPng, fit: BoxFit.cover), + child: Padding( + padding: EdgeInsets.symmetric(horizontal: 24.0.w()), + child: Image.asset(AssetsManager.logoBigPng, fit: BoxFit.cover), + ), ), ); } diff --git a/lib/views/splash/pages/t_splash_page.dart b/lib/views/splash/pages/t_splash_page.dart index 71f85ee..8b09333 100644 --- a/lib/views/splash/pages/t_splash_page.dart +++ b/lib/views/splash/pages/t_splash_page.dart @@ -42,7 +42,10 @@ class _TabletSplashPageState extends State { Widget build(BuildContext context) { return Scaffold( body: Center( - child: Image.asset(AssetsManager.logoBigPng, fit: BoxFit.cover), + child: Padding( + padding: const EdgeInsets.symmetric(horizontal: 40), + child: Image.asset(AssetsManager.logoBigPng), + ), ), ); }