From 1f435ec7bbaf8550effe6112cef9bbbf23f0766a Mon Sep 17 00:00:00 2001 From: Nuo Xu Date: Wed, 3 Jan 2024 10:07:25 -0500 Subject: [PATCH] add coingecko label in coin market details --- .../BraveWallet/Crypto/Asset Details/AssetDetailView.swift | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Sources/BraveWallet/Crypto/Asset Details/AssetDetailView.swift b/Sources/BraveWallet/Crypto/Asset Details/AssetDetailView.swift index 5cb53b3a9a6..bfd78eaad2f 100644 --- a/Sources/BraveWallet/Crypto/Asset Details/AssetDetailView.swift +++ b/Sources/BraveWallet/Crypto/Asset Details/AssetDetailView.swift @@ -285,6 +285,12 @@ struct AssetDetailView: View { case .coinMarket(let coinMarket): coinMarketInfoView(coinMarket) .padding(.bottom, 20) + Text(Strings.Wallet.coinGeckoDisclaimer) + .multilineTextAlignment(.center) + .font(.footnote) + .foregroundColor(Color(.secondaryBraveLabel)) + .frame(maxWidth: .infinity) + .padding(.bottom, 12) } } .padding(.vertical)