Hi gaes.. kali ini saya akan berbagi pengalaman membuild ui bottom sheet untuk menampilkan daftar produk.
1. Preview Grid

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_product"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/title"
android:padding="8dp"
app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
app:spanCount="3"
tools:itemCount="20"
tools:listitem="@layout/item_product" />
2. Preview List Vertikal

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_product"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/title"
android:padding="8dp"
tools:itemCount="20"
tools:listitem="@layout/item_product" />
3. Preview List Horizontal

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_product"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/title"
android:padding="8dp"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
android:orientation="horizontal"
tools:itemCount="20"
tools:listitem="@layout/item_product" />