From 0e45616dfdbc7afd1c2f084c9d99f82af1c91dc2 Mon Sep 17 00:00:00 2001 From: JiWoong Sul Date: Thu, 4 Dec 2025 16:40:37 +0900 Subject: [PATCH] =?UTF-8?q?chore(app):=20=EC=8A=A4=ED=94=8C=EB=9E=98?= =?UTF-8?q?=EC=8B=9C=20=EA=B6=8C=ED=95=9C=20=EB=8C=80=EA=B8=B0=20=EC=8B=9C?= =?UTF-8?q?=EA=B0=84=EC=9D=84=203=EC=B4=88=EB=A1=9C=20=EC=B6=95=EC=86=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 권한 요청 Future 타임아웃을 5초에서 3초로 줄여 스플래시 체류 시간을 단축 --- lib/presentation/pages/splash/splash_screen.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/presentation/pages/splash/splash_screen.dart b/lib/presentation/pages/splash/splash_screen.dart index 7c8f705..931561e 100644 --- a/lib/presentation/pages/splash/splash_screen.dart +++ b/lib/presentation/pages/splash/splash_screen.dart @@ -247,9 +247,9 @@ class _SplashScreenState extends State } void _navigateToHome() { - // 권한 요청이 지연되어도 스플래시(Splash) 화면이 멈추지 않도록 최대 5초만 대기한다. + // 권한 요청이 지연되어도 스플래시(Splash) 화면이 멈추지 않도록 최대 3초만 대기한다. final permissionFuture = _ensurePermissions().timeout( - const Duration(seconds: 5), + const Duration(seconds: 3), onTimeout: () {}, );