feat(can-payment): 다국적 통화 표기 지원 및 결제 금액 표시 개선

- KRW 고정 표기에서 벗어나 PG/해외 결제 등 다양한 통화 표기를 정확히 지원하기 위함
This commit is contained in:
Yu Sung
2025-10-02 17:17:17 +09:00
parent d045722b8d
commit 81b01722ac
4 changed files with 16 additions and 4 deletions

View File

@@ -124,7 +124,7 @@ struct CanPgItemView: View {
Spacer()
Text("\(item.price)")
Text(item.priceStr.formatCurrency(currencyCode: item.currency))
.font(.custom(Font.bold.rawValue, size: 15.3))
.foregroundColor(Color(hex: "eeeeee"))
}