feat(creator): 채널 홈 기본 화면을 연결한다

This commit is contained in:
Yu Sung
2026-07-01 20:14:08 +09:00
parent 033a9d3a0b
commit 29f7f3c26c
10 changed files with 638 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
import SwiftUI
struct CreatorChannelPlaceholderTabView: View {
let title: String
var body: some View {
VStack(spacing: 12) {
Text(title)
.font(.system(size: 18, weight: .semibold))
.foregroundColor(.white)
Text(I18n.CreatorChannelHome.placeholderMessage)
.font(.system(size: 14))
.foregroundColor(Color.gray500)
}
.frame(maxWidth: .infinity, maxHeight: .infinity)
.background(Color.black)
}
}