20 lines
528 B
Swift
20 lines
528 B
Swift
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)
|
|
}
|
|
}
|