summaryrefslogtreecommitdiff
path: root/wallet/src/main/res/layout
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2023-01-12 00:36:58 -0600
committerIván Ávalos <avalos@disroot.org>2023-01-26 12:18:54 -0600
commitdf88d1d1d53db9e0d6471690c120c64abd34592c (patch)
tree26224b0a652b21cbf007c943c57aaf9fb0710b05 /wallet/src/main/res/layout
parentf636027212d2a45d3b9696e8efd4348badf79661 (diff)
downloadtaler-android-df88d1d1d53db9e0d6471690c120c64abd34592c.tar.gz
taler-android-df88d1d1d53db9e0d6471690c120c64abd34592c.tar.bz2
taler-android-df88d1d1d53db9e0d6471690c120c64abd34592c.zip
[wallet] Fix icon color in button
Diffstat (limited to 'wallet/src/main/res/layout')
-rw-r--r--wallet/src/main/res/layout/fragment_transaction_withdrawal.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/wallet/src/main/res/layout/fragment_transaction_withdrawal.xml b/wallet/src/main/res/layout/fragment_transaction_withdrawal.xml
index 9c1dbda..5afd22b 100644
--- a/wallet/src/main/res/layout/fragment_transaction_withdrawal.xml
+++ b/wallet/src/main/res/layout/fragment_transaction_withdrawal.xml
@@ -54,12 +54,15 @@
app:layout_constraintTop_toBottomOf="@+id/effectiveAmountLabel"
tools:text="23.42 TESTKUDOS" />
- <Button
+ <com.google.android.material.button.MaterialButton
android:id="@+id/confirmWithdrawalButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:drawableLeft="@drawable/ic_account_balance"
+ app:icon="@drawable/ic_account_balance"
android:text="@string/withdraw_button_confirm_bank"
+ android:textColor="?colorOnPrimary"
+ app:iconTint="?colorOnPrimary"
+ app:layout_constraintBottom_toTopOf="@+id/chosenAmountLabel"
app:drawableTint="?attr/colorOnPrimarySurface"
app:layout_constraintBottom_toTopOf="@+id/actionButton"
app:layout_constraintEnd_toEndOf="parent"