Lacerta/feature/home/src/main/res/layout/fragment_home_top.xml

11 lines
415 B
XML
Raw Normal View History

2024-01-19 08:46:33 +00:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2024-01-19 08:47:57 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
2024-01-22 02:01:57 +00:00
android:layout_height="match_parent">
2023-12-19 03:56:31 +00:00
2024-01-22 02:01:57 +00:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/home_item_recycler_view"
2024-01-19 06:45:18 +00:00
android:layout_width="match_parent"
2024-01-22 02:01:57 +00:00
android:layout_height="match_parent" />
2024-01-19 07:51:20 +00:00
2024-01-19 08:46:33 +00:00
</FrameLayout>