From cc8bcc7b54787afbf7256186bbfbc0fcfe0a47c1 Mon Sep 17 00:00:00 2001 From: JiWoong Sul Date: Thu, 29 Jan 2026 23:55:39 +0900 Subject: [PATCH] =?UTF-8?q?refactor(home):=20=EA=B5=AC=EB=8F=85=20?= =?UTF-8?q?=EA=B0=9C=EC=88=98=20=ED=91=9C=EC=8B=9C=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=ED=99=94=EC=82=B4=ED=91=9C=20=EC=95=84=EC=9D=B4=EC=BD=98=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 메인 화면의 구독 개수 표시 우측 ">" 아이콘 삭제 - 불필요한 UI 요소 정리 --- lib/widgets/home_content.dart | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/lib/widgets/home_content.dart b/lib/widgets/home_content.dart index d5d3deb..270b2d5 100644 --- a/lib/widgets/home_content.dart +++ b/lib/widgets/home_content.dart @@ -161,24 +161,14 @@ class _HomeContentState extends State { ).animate(CurvedAnimation( parent: widget.slideController, curve: Curves.easeOutCubic)), - child: Row( - children: [ - Text( - AppLocalizations.of(context).subscriptionCount( - subscriptionProvider.subscriptions.length), - style: TextStyle( - fontSize: 14, - fontWeight: FontWeight.w600, - color: Theme.of(context).colorScheme.primary, - ), - ), - const SizedBox(width: 4), - Icon( - Icons.arrow_forward_ios, - size: 14, - color: Theme.of(context).colorScheme.primary, - ), - ], + child: Text( + AppLocalizations.of(context).subscriptionCount( + subscriptionProvider.subscriptions.length), + style: TextStyle( + fontSize: 14, + fontWeight: FontWeight.w600, + color: Theme.of(context).colorScheme.primary, + ), ), ), ],