크리에이터 채널 - 크리에이터 커뮤니티 영역 추가
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
//
|
||||
// CreatorCommunityNoPostsItemView.swift
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2023/12/14.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct CreatorCommunityNoPostsItemView: View {
|
||||
var body: some View {
|
||||
VStack(spacing: 10.3) {
|
||||
CreatorCommunityWriteItemView()
|
||||
|
||||
Text("게시물 등록")
|
||||
.font(.custom(Font.bold.rawValue, size: 14.7))
|
||||
.foregroundColor(Color(hex: "eeeeee"))
|
||||
|
||||
Text("게시 후에 게시물이 여기에 표시되고\n커뮤니티에 공개됩니다.")
|
||||
.font(.custom(Font.medium.rawValue, size: 12))
|
||||
.foregroundColor(Color(hex: "777777"))
|
||||
.fixedSize(horizontal: false, vertical: true)
|
||||
.multilineTextAlignment(.center)
|
||||
}
|
||||
.padding(.vertical, 16.7)
|
||||
.frame(maxWidth: .infinity)
|
||||
.background(Color(hex: "222222"))
|
||||
.cornerRadius(10.3)
|
||||
}
|
||||
}
|
||||
|
||||
struct CreatorCommunityNoPostsItemView_Previews: PreviewProvider {
|
||||
static var previews: some View {
|
||||
CreatorCommunityNoPostsItemView()
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user