refactor(home): 구독 개수 표시에서 화살표 아이콘 제거

- 메인 화면의 구독 개수 표시 우측 ">" 아이콘 삭제
- 불필요한 UI 요소 정리
This commit is contained in:
JiWoong Sul
2026-01-29 23:55:39 +09:00
parent 9a950ee6c7
commit cc8bcc7b54

View File

@@ -161,9 +161,7 @@ class _HomeContentState extends State<HomeContent> {
).animate(CurvedAnimation( ).animate(CurvedAnimation(
parent: widget.slideController, parent: widget.slideController,
curve: Curves.easeOutCubic)), curve: Curves.easeOutCubic)),
child: Row( child: Text(
children: [
Text(
AppLocalizations.of(context).subscriptionCount( AppLocalizations.of(context).subscriptionCount(
subscriptionProvider.subscriptions.length), subscriptionProvider.subscriptions.length),
style: TextStyle( style: TextStyle(
@@ -172,14 +170,6 @@ class _HomeContentState extends State<HomeContent> {
color: Theme.of(context).colorScheme.primary, color: Theme.of(context).colorScheme.primary,
), ),
), ),
const SizedBox(width: 4),
Icon(
Icons.arrow_forward_ios,
size: 14,
color: Theme.of(context).colorScheme.primary,
),
],
),
), ),
], ],
), ),