17 lines
488 B
Swift
17 lines
488 B
Swift
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, 20)
|
|
.padding(.bottom, 120)
|
|
}
|
|
}
|