콘텐츠 상세, 콘텐츠 구매

- pg 테스트 계정의 경우 캔이 아닌 원으로 표시되도록 하고 콘텐츠 구매시 바로 결제 후 구매 되도록 수정
This commit is contained in:
Yu Sung
2024-05-21 00:11:06 +09:00
parent fd2230dbe1
commit 568d7f2284
13 changed files with 637 additions and 99 deletions

View File

@@ -14,16 +14,18 @@ struct ContentDetailPurchaseButton: View {
var body: some View {
HStack(spacing: 0) {
Image("ic_can")
.resizable()
.frame(width: 16.7, height: 16.7)
if UserDefaults.int(forKey: .userId) != 17958 {
Image("ic_can")
.resizable()
.frame(width: 16.7, height: 16.7)
}
Text("\(price)")
Text(UserDefaults.int(forKey: .userId) == 17958 ? "\(price * 110)" : "\(price)")
.font(.custom(Font.bold.rawValue, size: 14.7))
.foregroundColor(.white)
.padding(.leading, 5.3)
Text("캔으로")
Text(UserDefaults.int(forKey: .userId) == 17958 ? "원으로": "캔으로")
.font(.custom(Font.light.rawValue, size: 12))
.foregroundColor(.white)