Files
Kotatsu/app/src/main/res/layout/fragment_favourites_container.xml
2024-01-16 15:30:53 +02:00

31 lines
911 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.google.android.material.tabs.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabGravity="start"
app:tabMode="scrollable" />
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:visibility="gone" />
<ViewStub
android:id="@+id/stub_empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout="@layout/item_empty_state"
tools:visibility="visible" />
</LinearLayout>