크리에이터 채널 - 크리에이터 커뮤니티 영역 추가

This commit is contained in:
Yu Sung
2023-12-15 00:25:13 +09:00
parent 7d34a4e27a
commit c84f1042e3
10 changed files with 189 additions and 169 deletions

View File

@@ -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()
}
}