feat(home): 팔로잉 크리에이터 섹션을 추가한다

This commit is contained in:
Yu Sung
2026-07-01 00:04:17 +09:00
parent ae09776c9b
commit fb7d0c799f
6 changed files with 114 additions and 6 deletions

View File

@@ -164,7 +164,8 @@ struct MainView: View {
onTapCommunity: handleRecommendationCommunityTap,
onTapBanner: handleRecommendationBannerTap,
onTapFollowAll: handleRecommendationFollowAllTap,
onSelectFollowingTab: handleFollowingTabSelection
onSelectFollowingTab: handleFollowingTabSelection,
onTapFollowingAll: handleFollowingAllTap
)
case .content:
MainPlaceholderTabView(title: MainTab.content.title)
@@ -485,6 +486,10 @@ struct MainView: View {
performRecommendationDetailAction(action: action)
}
private func handleFollowingAllTap() {
appState.setAppStep(step: .followingList)
}
private func handleFollowingTabSelection() -> Bool {
let trimmed = token.trimmingCharacters(in: .whitespacesAndNewlines)
guard !trimmed.isEmpty else {