Updated on 2026-08-14

This commit is contained in:
Tangem 2025-11-05 10:15:19 +01:00
parent eec502fddc
commit 6036c65b64

View file

@ -92,7 +92,11 @@ private fun OnrampAmountField(amountField: AmountFieldModel, currencyCode: Strin
symbol = currencyCode,
currencyCode = currencyCode,
decimalFormat = decimalFormat,
symbolColor = TangemTheme.colors.text.disabled,
symbolColor = if (amountField.fiatValue.isBlank()) {
TangemTheme.colors.text.disabled
} else {
TangemTheme.colors.text.primary1
},
),
onValueChange = amountField.onValueChange,
keyboardOptions = amountField.keyboardOptions,