commit df88d1d1d53db9e0d6471690c120c64abd34592c
parent f636027212d2a45d3b9696e8efd4348badf79661
Author: Iván Ávalos <avalos@disroot.org>
Date: Thu, 12 Jan 2023 00:36:58 -0600
[wallet] Fix icon color in button
Diffstat:
1 file 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
@@ -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"