summaryrefslogtreecommitdiff
path: root/wallet/src/main/res/layout/list_item_transaction.xml
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2023-01-16 22:39:18 -0600
committerIván Ávalos <avalos@disroot.org>2023-01-16 22:39:18 -0600
commit3b584c20212c86142689592a24658b3b83464cb4 (patch)
tree0bb9604d5b24519cd43c87c7f95495c3f43197d8 /wallet/src/main/res/layout/list_item_transaction.xml
parent46b1b61c1162ce67d155f4637e7709d2b8ec0901 (diff)
downloadtaler-android-3b584c20212c86142689592a24658b3b83464cb4.tar.gz
taler-android-3b584c20212c86142689592a24658b3b83464cb4.tar.bz2
taler-android-3b584c20212c86142689592a24658b3b83464cb4.zip
[wallet] Initial implementation of KYC handlingdev/ivan-avalos/kyc
#0007566
Diffstat (limited to 'wallet/src/main/res/layout/list_item_transaction.xml')
-rw-r--r--wallet/src/main/res/layout/list_item_transaction.xml13
1 files changed, 12 insertions, 1 deletions
diff --git a/wallet/src/main/res/layout/list_item_transaction.xml b/wallet/src/main/res/layout/list_item_transaction.xml
index 64d9045..232afb8 100644
--- a/wallet/src/main/res/layout/list_item_transaction.xml
+++ b/wallet/src/main/res/layout/list_item_transaction.xml
@@ -62,6 +62,17 @@
tools:text="@string/withdraw_waiting_confirm"
tools:visibility="visible" />
+ <com.google.android.material.button.MaterialButton
+ android:id="@+id/actionButton"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:visibility="gone"
+ app:backgroundTint="@color/colorAccent"
+ app:layout_constraintStart_toStartOf="@id/title"
+ app:layout_constraintTop_toBottomOf="@id/extraInfoView"
+ tools:text="Complete KYC"
+ tools:visibility="visible"/>
+
<TextView
android:id="@+id/time"
android:layout_width="0dp"
@@ -72,7 +83,7 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/barrier"
app:layout_constraintStart_toStartOf="@+id/title"
- app:layout_constraintTop_toBottomOf="@+id/extraInfoView"
+ app:layout_constraintTop_toBottomOf="@+id/actionButton"
tools:text="23 min ago" />
<androidx.constraintlayout.widget.Barrier