feat(creator): 팔로워 목록 이동을 연결한다

This commit is contained in:
Yu Sung
2026-08-03 21:43:56 +09:00
parent 2db4ef1c35
commit aea5b5cdec
4 changed files with 45 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ import Kingfisher
struct CreatorChannelHeaderSection: View {
let creator: CreatorChannelCreatorResponse
let isOwnCreatorChannel: Bool
let onTapFollowerCount: () -> Void
let onTapTalk: () -> Void
let onTapDm: () -> Void
@@ -46,6 +47,7 @@ struct CreatorChannelHeaderSection: View {
.appFont(size: 16, weight: .medium)
.foregroundColor(.white)
.multilineTextAlignment(.center)
.onTapGesture(perform: onTapFollowerCount)
Text(creator.nickname)
.appFont(size: 32, weight: .bold)