feat(creator): 커뮤니티 탭을 추가한다
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import SwiftUI
|
||||
|
||||
struct CreatorChannelCommunityEmptyView: View {
|
||||
var body: some View {
|
||||
VStack(spacing: 0) {
|
||||
Text(I18n.CreatorChannelCommunity.communityEmpty)
|
||||
.appFont(size: 16, weight: .regular)
|
||||
.foregroundColor(Color.gray500)
|
||||
.multilineTextAlignment(.center)
|
||||
.lineSpacing(SodaSpacing.s4)
|
||||
}
|
||||
.frame(maxWidth: .infinity)
|
||||
.padding(.top, 316)
|
||||
.padding(.bottom, 120)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user