콘텐츠 상세 - 비밀댓글 등록

- 비밀댓글 체크박스 이미지 네모로 변경
This commit is contained in:
Yu Sung 2024-08-30 17:50:39 +09:00
parent 24f09d068d
commit 0f1de35e62
1 changed files with 2 additions and 2 deletions

View File

@ -34,13 +34,13 @@ struct ContentDetailCommentView: View {
if isShowSecret && commentCount <= 0 { if isShowSecret && commentCount <= 0 {
HStack(spacing: 8) { HStack(spacing: 8) {
Image(isSecret ? "btn_select_checked" : "btn_select_normal") Image(isSecret ? "btn_square_select_checked" : "btn_square_select_normal")
.resizable() .resizable()
.frame(width: 20, height: 20) .frame(width: 20, height: 20)
Text("비밀댓글") Text("비밀댓글")
.font(.custom(Font.medium.rawValue, size: 12)) .font(.custom(Font.medium.rawValue, size: 12))
.foregroundColor(Color.grayee) .foregroundColor(isSecret ? Color.button : Color.grayee)
} }
.onTapGesture { .onTapGesture {
isSecret.toggle() isSecret.toggle()