From bc8d3e6d70ff6d6b2ea64a736ed267cddc06abf6 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Thu, 5 Sep 2024 20:02:50 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9D=BC=EC=9D=B4=EB=B8=8C=20=EB=B0=A9=20-=20?= =?UTF-8?q?=EC=9C=A0=EC=A0=80=20=EC=B0=A8=EB=8B=A8=20=ED=8C=9D=EC=97=85=20?= =?UTF-8?q?-=20=EB=A6=AC=EC=8A=A4=EB=84=88=EA=B0=80=20=EC=B0=A8=EB=8B=A8?= =?UTF-8?q?=ED=95=A0=20=EB=95=8C=20=ED=8C=9D=EC=97=85=20=EB=AC=B8=EA=B5=AC?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Sources/Report/UserBlockConfirmDialogView.swift | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/SodaLive/Sources/Report/UserBlockConfirmDialogView.swift b/SodaLive/Sources/Report/UserBlockConfirmDialogView.swift index bb34e00..fd43ba0 100644 --- a/SodaLive/Sources/Report/UserBlockConfirmDialogView.swift +++ b/SodaLive/Sources/Report/UserBlockConfirmDialogView.swift @@ -22,13 +22,15 @@ struct UserBlockConfirmDialogView: View { - 내 채널의 팬Talk 작성불가 """ + let notice2 = "- 사용자를 차단하면 '차단한 사용자의 라이브 중 채팅'이 보이지 않습니다." + var body: some View { ZStack { Color.black .opacity(0.7) .ignoresSafeArea() .onTapGesture { isShowing = false } - + VStack(spacing: 13.3) { Text("사용자 차단") .font(.custom(Font.medium.rawValue, size: 16.7)) @@ -39,7 +41,7 @@ struct UserBlockConfirmDialogView: View { .foregroundColor(.white) HStack(spacing: 0) { - Text(notice) + Text(UserDefaults.string(forKey: .role) == MemberRole.CREATOR.rawValue ? notice : notice2) .font(.custom(Font.medium.rawValue, size: 13.3)) .foregroundColor(.white) @@ -51,14 +53,14 @@ struct UserBlockConfirmDialogView: View { Text("취소") .font(.custom(Font.medium.rawValue, size: 13.3)) - .foregroundColor(Color(hex: "3bb9f1")) + .foregroundColor(Color.button) .onTapGesture { isShowing = false } Text("차단") .font(.custom(Font.medium.rawValue, size: 13.3)) - .foregroundColor(Color(hex: "3bb9f1")) + .foregroundColor(Color.button) .onTapGesture { isShowing = false confirmAction() @@ -68,7 +70,7 @@ struct UserBlockConfirmDialogView: View { } .padding(24) .frame(width: screenSize().width - 33.3) - .background(Color(hex: "222222")) + .background(Color.gray22) .cornerRadius(13.3) } }