From c40cbed0bb972bafe51ad1f413385537baa59ede Mon Sep 17 00:00:00 2001 From: sihoo Date: Tue, 8 Sep 2026 17:50:18 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A9=94=EC=9D=B8=20=EB=8C=80=EC=8B=9C?= =?UTF-8?q?=EB=B3=B4=EB=93=9C=20=ED=83=80=EC=9D=BC=20=ED=81=AC=EA=B8=B0=20?= =?UTF-8?q?50px=20=EC=B6=95=EC=86=8C=20(276=20->=20226)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 직전 커밋에서 타일을 너무 키웠다는 피드백을 반영. Co-Authored-By: Claude Sonnet 5 --- lib/ui/main_dashboard.dart | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/ui/main_dashboard.dart b/lib/ui/main_dashboard.dart index c75dbb5..31037f2 100644 --- a/lib/ui/main_dashboard.dart +++ b/lib/ui/main_dashboard.dart @@ -635,10 +635,9 @@ class _MainDashboardState extends State { : width < 700 ? 3 : 4; - // 📏 1칸(1x1) 크기 목표. 계정 프로필 카드 크기(184)보다 50% 더 키워서 - // 타일 글자/아이콘이 더 잘 보이게 한다. 화면이 그보다 넓으면 가운데로 - // 모아서 여백을 주고, 좁으면(폰) 화면 폭에 맞춘다. - const double targetCellSize = 276; + // 📏 1칸(1x1) 크기 목표. 화면이 그보다 넓으면 가운데로 모아서 여백을 + // 주고, 좁으면(폰) 화면 폭에 맞춘다. + const double targetCellSize = 226; const double gap = 12; final double idealGridWidth = crossAxisCount * targetCellSize + (crossAxisCount - 1) * gap;