|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<ScrollView |
| 3 | + xmlns:android="http://schemas.android.com/apk/res/android" |
| 4 | + xmlns:app="http://schemas.android.com/apk/res-auto" |
| 5 | + xmlns:tools="http://schemas.android.com/tools" |
| 6 | + android:layout_width="match_parent" |
| 7 | + android:layout_height="match_parent"> |
| 8 | + <androidx.constraintlayout.widget.ConstraintLayout |
| 9 | + android:background="@color/black" |
| 10 | + android:layout_width="match_parent" |
| 11 | + android:layout_height="match_parent" |
| 12 | + android:id="@+id/text_dashboard" |
| 13 | + tools:context=".ui.dashboard.DashboardFragment" |
| 14 | + tools:ignore="HardcodedText"> |
| 15 | + |
| 16 | + <View |
| 17 | + android:id="@+id/view" |
| 18 | + android:layout_width="match_parent" |
| 19 | + android:layout_height="128dp" |
| 20 | + android:background="@drawable/custom_rectangle" |
| 21 | + app:layout_constraintEnd_toEndOf="parent" |
| 22 | + app:layout_constraintStart_toStartOf="parent" |
| 23 | + app:layout_constraintTop_toTopOf="parent" /> |
| 24 | + <TextView |
| 25 | + android:id="@+id/textView" |
| 26 | + android:textAlignment="center" |
| 27 | + android:layout_width="match_parent" |
| 28 | + android:layout_height="wrap_content" |
| 29 | + android:layout_marginStart="8dp" |
| 30 | + android:layout_marginTop="16dp" |
| 31 | + android:gravity="center_horizontal" |
| 32 | + android:letterSpacing="0.025" |
| 33 | + android:text="Pro Notes" |
| 34 | + android:textColor="@color/white" |
| 35 | + android:textSize="22sp" |
| 36 | + android:textStyle="bold" |
| 37 | + app:layout_constraintTop_toTopOf="parent" /> |
| 38 | + |
| 39 | + <androidx.cardview.widget.CardView |
| 40 | + android:id="@+id/cardView" |
| 41 | + android:layout_width="match_parent" |
| 42 | + android:layout_height="128dp" |
| 43 | + android:layout_marginStart="16dp" |
| 44 | + android:layout_marginTop="16dp" |
| 45 | + android:layout_marginEnd="16dp" |
| 46 | + android:elevation="12dp" |
| 47 | + app:cardCornerRadius="8dp" |
| 48 | + app:layout_constraintEnd_toEndOf="parent" |
| 49 | + app:layout_constraintHorizontal_bias="0.0" |
| 50 | + app:layout_constraintStart_toStartOf="parent" |
| 51 | + app:layout_constraintTop_toBottomOf="@+id/textView"> |
| 52 | + |
| 53 | + <androidx.constraintlayout.widget.ConstraintLayout |
| 54 | + android:id="@id/constraint" |
| 55 | + android:layout_width="match_parent" |
| 56 | + android:layout_height="match_parent" |
| 57 | + android:background="@color/grey"> |
| 58 | + |
| 59 | + <TextView |
| 60 | + android:id="@+id/textView2" |
| 61 | + android:layout_width="match_parent" |
| 62 | + android:layout_height="wrap_content" |
| 63 | + android:layout_marginStart="16dp" |
| 64 | + android:layout_marginTop="16dp" |
| 65 | + android:text="Brett Tech Networking" |
| 66 | + android:textAllCaps="true" |
| 67 | + android:textAlignment="center" |
| 68 | + android:textColor="@color/white" |
| 69 | + android:textSize="20sp" |
| 70 | + android:textStyle="bold" |
| 71 | + app:layout_constraintStart_toStartOf="parent" |
| 72 | + app:layout_constraintTop_toTopOf="parent" /> |
| 73 | + |
| 74 | + <TextView |
| 75 | + android:id="@+id/textView3" |
| 76 | + android:layout_width="match_parent" |
| 77 | + android:layout_height="wrap_content" |
| 78 | + android:textAlignment="center" |
| 79 | + android:layout_marginTop="4dp" |
| 80 | + android:text="support@brett-techrepair.com" |
| 81 | + android:textColor="@android:color/white" |
| 82 | + android:textSize="18sp" |
| 83 | + app:layout_constraintStart_toStartOf="@+id/textView2" |
| 84 | + app:layout_constraintTop_toBottomOf="@+id/textView2" /> |
| 85 | + |
| 86 | + </androidx.constraintlayout.widget.ConstraintLayout> |
| 87 | + </androidx.cardview.widget.CardView> |
| 88 | + </androidx.constraintlayout.widget.ConstraintLayout> |
| 89 | +</ScrollView> |
| 90 | + |
0 commit comments