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

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,28 @@
//
// CreatorCommunityWriteItemView.swift
// SodaLive
//
// Created by klaus on 2023/12/14.
//
import SwiftUI
struct CreatorCommunityWriteItemView: View {
var body: some View {
Image("ic_make_message")
.padding(13)
.background(Color(hex: "333333"))
.cornerRadius(13.3)
.overlay(
RoundedRectangle(cornerRadius: 13.3)
.stroke(lineWidth: 1)
.foregroundColor(Color(hex: "555555"))
)
}
}
struct CreatorCommunityWriteItemView_Previews: PreviewProvider {
static var previews: some View {
CreatorCommunityWriteItemView()
}
}