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

26 lines
823 B
XML
Raw Permalink Normal View History

2025-08-26 13:45:32 +05:30
<!-- item_variant.xml -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="12dp"
android:background="?android:attr/selectableItemBackground">
<!-- Variant Name -->
<TextView
android:id="@+id/variantName"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Variant Name"
android:textSize="16sp" />
<!-- Variant Price -->
<TextView
android:id="@+id/variantPrice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Price"
android:textSize="16sp" />
</LinearLayout>