From 51c16d49ec5c9f32ceb4454b8b9338148adef137 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 12 Apr 2024 16:18:42 +0900 Subject: [PATCH] =?UTF-8?q?=ED=9B=84=EC=9B=90=ED=95=98=EA=B8=B0=20?= =?UTF-8?q?=ED=8C=9D=EC=97=85=20-=20=EC=B6=A9=EC=A0=84=ED=95=98=EA=B8=B0?= =?UTF-8?q?=20=EB=B2=84=ED=8A=BC=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Detail/LiveRoomDonationDialogView.swift | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/SodaLive/Sources/Content/Detail/LiveRoomDonationDialogView.swift b/SodaLive/Sources/Content/Detail/LiveRoomDonationDialogView.swift index b957f71..0d91541 100644 --- a/SodaLive/Sources/Content/Detail/LiveRoomDonationDialogView.swift +++ b/SodaLive/Sources/Content/Detail/LiveRoomDonationDialogView.swift @@ -37,7 +37,7 @@ struct LiveRoomDonationDialogView: View { VStack(spacing: 0) { Spacer() VStack(spacing: 0) { - HStack(spacing: 5.3) { + HStack(alignment: .center, spacing: 5.3) { Image("ic_donation_white") .resizable() .frame(width: 26.7, height: 26.7) @@ -48,7 +48,7 @@ struct LiveRoomDonationDialogView: View { Spacer() - HStack(spacing: 5.3) { + HStack(alignment: .center, spacing: 5.3) { Image("ic_can") .resizable() .frame(width: 26.7, height: 26.7) @@ -57,7 +57,17 @@ struct LiveRoomDonationDialogView: View { .font(.custom(Font.bold.rawValue, size: 18.3)) .foregroundColor(Color.grayee) - Image("ic_forward") + Text("충전") + .font(.custom(Font.medium.rawValue, size: 13.3)) + .foregroundColor(Color.main) + .padding(.horizontal, 13.3) + .padding(.vertical, 8) + .background(Color.bg) + .cornerRadius(6.7) + .overlay( + RoundedRectangle(cornerRadius: 6.7) + .stroke(Color.button, lineWidth: 1) + ) } .onTapGesture { AppState.shared.setAppStep(step: .canCharge(refresh: {}, afterCompletionToGoBack: true))