107 lines
4.2 KiB
XML
107 lines
4.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:background="#B9000000"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/border_radius"
|
|
android:layout_margin="10dp"
|
|
android:orientation="vertical">
|
|
<TextView
|
|
android:id="@+id/close"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginHorizontal="10dp"
|
|
android:drawableRight="@drawable/close_1">
|
|
</TextView>
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Re Print"
|
|
android:layout_marginHorizontal="25dp"
|
|
android:textSize="24dp"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/black"
|
|
android:fontFamily="@font/manropeextrabold"/>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginHorizontal="25dp"
|
|
android:gravity="end">
|
|
<Button
|
|
android:id="@+id/clearAll"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Clear All"
|
|
android:background="@drawable/clear_btn"
|
|
android:textColor="@color/white"
|
|
android:paddingHorizontal="20dp"
|
|
android:fontFamily="@font/manropebold"
|
|
android:textAllCaps="false" />
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_marginHorizontal="25dp"
|
|
android:layout_marginTop="10dp"
|
|
android:background="@drawable/border_top_radius"
|
|
android:weightSum="5">
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
android:padding="10dp"
|
|
android:text="SLNO"
|
|
android:textSize="16dp"
|
|
android:gravity="center"
|
|
android:textStyle="bold"
|
|
android:fontFamily="@font/manropeextrabold"/>
|
|
<View
|
|
android:layout_width="2dp"
|
|
android:layout_height="25dp"
|
|
android:layout_gravity="center"
|
|
android:layout_marginLeft="5dp"
|
|
android:background="@drawable/nav_border2"
|
|
android:backgroundTint="@color/white" />
|
|
<TextView
|
|
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:padding="10dp"
|
|
android:text="ORDERS"
|
|
android:textSize="16dp"
|
|
android:gravity="center"
|
|
android:textStyle="bold"
|
|
android:fontFamily="@font/manropeextrabold"/>
|
|
<View
|
|
android:layout_width="2dp"
|
|
android:layout_height="25dp"
|
|
android:layout_gravity="center"
|
|
android:layout_marginLeft="5dp"
|
|
android:background="@drawable/nav_border2"
|
|
android:backgroundTint="@color/white" />
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:padding="10dp"
|
|
android:text="DELETE"
|
|
android:textSize="16dp"
|
|
android:gravity="center"
|
|
android:textStyle="bold"
|
|
android:fontFamily="@font/manropeextrabold"/>
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
</LinearLayout> |