summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/drawer_identity_proofs.xml
diff options
context:
space:
mode:
authorThomas <tschneider.ac@gmail.com>2023-01-22 15:22:59 +0100
committerThomas <tschneider.ac@gmail.com>2023-01-22 15:22:59 +0100
commite9571221becec2b696d7834db9da63fa5fa8e63b (patch)
tree6e897042e50c7e2ad96955ac5f3a2c3e7cfacae2 /app/src/main/res/layout/drawer_identity_proofs.xml
parentf2799e939c4ed6a874364d1705dfdd5d9b431bab (diff)
Changes
Diffstat (limited to 'app/src/main/res/layout/drawer_identity_proofs.xml')
-rw-r--r--app/src/main/res/layout/drawer_identity_proofs.xml74
1 files changed, 0 insertions, 74 deletions
diff --git a/app/src/main/res/layout/drawer_identity_proofs.xml b/app/src/main/res/layout/drawer_identity_proofs.xml
deleted file mode 100644
index dd030493b..000000000
--- a/app/src/main/res/layout/drawer_identity_proofs.xml
+++ /dev/null
@@ -1,74 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?><!--
- Copyright 2022 Thomas Schneider
-
- This file is a part of Fedilab
-
- This program is free software; you can redistribute it and/or modify it under the terms of the
- GNU General Public License as published by the Free Software Foundation; either version 3 of the
- License, or (at your option) any later version.
-
- Fedilab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
- Public License for more details.
-
- You should have received a copy of the GNU General Public License along with Fedilab; if not,
- see <http://www.gnu.org/licenses>.
--->
-<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:id="@+id/proof_container"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="4dp"
- android:background="@drawable/green_border"
- android:padding="5dp">
-
- <ImageView
- android:id="@+id/proof_icon"
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_gravity="center"
- android:contentDescription="@string/verified_user"
- android:src="@drawable/ic_baseline_verified_24"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
-
- <TextView
- android:id="@+id/proof_name"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginStart="4dp"
- android:layout_marginEnd="4dp"
- android:ellipsize="end"
- android:textSize="16sp"
- app:layout_constraintBottom_toTopOf="@id/proof_name_network"
- app:layout_constraintEnd_toStartOf="@id/proof_arrow"
- app:layout_constraintStart_toEndOf="@id/proof_icon"
- app:layout_constraintTop_toTopOf="parent"
- app:layout_constraintVertical_chainStyle="packed" />
-
- <TextView
- android:id="@+id/proof_name_network"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginStart="4dp"
- android:layout_marginEnd="4dp"
- android:ellipsize="end"
- android:textSize="12sp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toStartOf="@id/proof_arrow"
- app:layout_constraintStart_toEndOf="@id/proof_icon"
- app:layout_constraintTop_toBottomOf="@id/proof_name" />
-
- <ImageView
- android:id="@+id/proof_arrow"
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:contentDescription="@string/identity_proofs"
- android:src="@drawable/ic_baseline_chevron_right_24"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
-
-</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file