53 lines
2.1 KiB
XML
53 lines
2.1 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||
|
|
android:id="@+id/productionmaster"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="@dimen/dp_5"
|
||
|
|
android:gravity="center_vertical"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:background="@color/dasbordColor"
|
||
|
|
android:paddingVertical="@dimen/dp_5">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/imageicon"
|
||
|
|
android:layout_width="20dp"
|
||
|
|
android:layout_height="15dp"
|
||
|
|
android:src="@drawable/production_icon"
|
||
|
|
android:tint="@color/white"
|
||
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
|
app:layout_constraintTop_toTopOf="parent" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/dashboardmenuname"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginStart="5dp"
|
||
|
|
android:fontFamily="@font/popins_medimum"
|
||
|
|
android:text="Production"
|
||
|
|
android:textColor="@color/white"
|
||
|
|
android:textSize="16dp"
|
||
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
|
app:layout_constraintStart_toEndOf="@id/imageicon"
|
||
|
|
app:layout_constraintTop_toTopOf="parent" />
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/arrowicon"
|
||
|
|
android:layout_width="20dp"
|
||
|
|
android:layout_height="17dp"
|
||
|
|
android:src="@drawable/icondashboard"
|
||
|
|
android:tint="@color/white"
|
||
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintTop_toTopOf="parent" />
|
||
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|