POZO_Retail/app/build/intermediates/merged-not-compiled-resources/release/layout/dinein_module.xml

128 lines
5.2 KiB
XML
Raw Permalink Normal View History

2025-08-26 13:45:32 +05:30
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/newlight_grey"
android:orientation="vertical">
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical"
app:cardCornerRadius="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="15dp"
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginStart="@dimen/dp_3"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<TextView
android:id="@+id/headerText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dp_10"
android:fontFamily="@font/inter_500"
android:text="Order Type"
android:textStyle="bold"
android:textColor="@color/black"
android:textSize="18dp" />
</LinearLayout>
<RelativeLayout
android:id="@+id/closeRlt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:gravity="center"
android:layout_marginRight="3dp"
android:layout_marginBottom="4dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent">
<ImageView
android:id="@+id/closeImg"
android:layout_width="15dp"
android:layout_height="15dp"
android:src="@drawable/close_1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent" />
</RelativeLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
<TextView
android:id="@+id/reasonType"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:fontFamily="@font/inter_500"
android:text="Where would you like to place the order?"
android:textColor="@color/black"
android:textSize="18dp" />
<LinearLayout
android:layout_marginTop="@dimen/dp_15"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:orientation="horizontal">
<Button
android:id="@+id/placeHere"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/sales_screen_10dp"
android:backgroundTint="@color/black"
android:fontFamily="@font/inter_500"
android:paddingHorizontal="@dimen/dp_5"
android:text="Place Here"
android:textColor="@color/white"
android:textAllCaps="false">
</Button>
<Button
android:id="@+id/dineInOrder"
android:layout_marginHorizontal="@dimen/dp_25"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingHorizontal="@dimen/dp_5"
android:background="@drawable/sales_screen_10dp"
android:backgroundTint="@color/selectedGreen"
android:fontFamily="@font/inter_500"
android:text="Dine In Order"
android:textColor="@color/white"
android:textAllCaps="false">
</Button>
</LinearLayout>
</LinearLayout>
</androidx.cardview.widget.CardView>
</androidx.constraintlayout.widget.ConstraintLayout>