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

50 lines
1.4 KiB
XML
Raw Normal View History

2025-08-26 13:45:32 +05:30
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minWidth="100dp"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:gravity="center"
android:padding="8dp">
<LinearLayout
android:id="@+id/topSeats"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center"
android:layout_marginBottom="8dp" />
<com.google.android.material.card.MaterialCardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:cardCornerRadius="5dp"
app:cardBackgroundColor="@color/primary_lightbrown_c99a66"
app:cardElevation="3dp">
<TextView
android:id="@+id/tableName"
android:layout_width="match_parent"
android:layout_height="60dp"
android:gravity="center"
android:text="Table"
android:fontFamily="@font/inter_600"
android:textColor="@color/primary_darkbrown_633207"
android:textStyle="bold"
/>
</com.google.android.material.card.MaterialCardView>
<LinearLayout
android:id="@+id/bottomSeats"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center"
android:layout_marginTop="8dp" />
</LinearLayout>