summaryrefslogtreecommitdiff
path: root/wallet/src/main/res/layout
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2023-01-11 22:03:07 -0600
committerIván Ávalos <avalos@disroot.org>2023-01-26 12:18:54 -0600
commit72620643dd275e3bf5a67420979d8483bb4512fd (patch)
tree530ba905171f18ab1f5579ca753b521b3bfd129d /wallet/src/main/res/layout
parent4f3162683e65b48c038cda2d7de8697124e16d22 (diff)
downloadtaler-android-72620643dd275e3bf5a67420979d8483bb4512fd.tar.gz
taler-android-72620643dd275e3bf5a67420979d8483bb4512fd.tar.bz2
taler-android-72620643dd275e3bf5a67420979d8483bb4512fd.zip
[wallet] Fixed icon color on scan QR button
Diffstat (limited to 'wallet/src/main/res/layout')
-rw-r--r--wallet/src/main/res/layout/fragment_manual_withdraw.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/wallet/src/main/res/layout/fragment_manual_withdraw.xml b/wallet/src/main/res/layout/fragment_manual_withdraw.xml
index 56ff077..9225d16 100644
--- a/wallet/src/main/res/layout/fragment_manual_withdraw.xml
+++ b/wallet/src/main/res/layout/fragment_manual_withdraw.xml
@@ -20,12 +20,13 @@
android:layout_width="match_parent"
android:layout_height="match_parent">
- <Button
+ <com.google.android.material.button.MaterialButton
android:id="@+id/qrCodeButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="32dp"
- android:drawableLeft="@drawable/ic_scan_qr"
+ app:icon="@drawable/ic_scan_qr"
+ app:iconTint="?colorOnPrimary"
android:text="@string/button_scan_qr_code"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"