show card network in source account drop down
Auto Tag on Version Change / check-version (push) Successful in 5s

This commit is contained in:
2026-05-27 21:35:27 +05:00
parent 0654c711d6
commit c98a3e3e89
2 changed files with 43 additions and 20 deletions
@@ -1628,6 +1628,13 @@ class TransferFragment : Fragment() {
val balance = AccountListParser.from(acc)?.balance ?: ""
b.tvDropdownBalance.text = if (hide && balance.isNotBlank()) maskAmount(balance) else balance
b.root.alpha = if (inactive) 0.4f else 1f
val networkIcon = BmlCardParser.cardNetworkIcon(acc)
if (networkIcon != null) {
b.ivDropdownCardLogo.setImageResource(networkIcon)
b.ivDropdownCardLogo.visibility = View.VISIBLE
} else {
b.ivDropdownCardLogo.visibility = View.GONE
}
b.root
}
}