Files
sodalive-ios/SodaLive/Sources/V2/CreatorChannel/Community/Components/CreatorChannelCommunityEmptyView.swift
2026-07-05 22:25:07 +09:00

17 lines
489 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, 316)
.padding(.bottom, 120)
}
}