summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/home_fragment.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/home_fragment.xml')
-rw-r--r--app/src/main/res/layout/home_fragment.xml25
1 files changed, 16 insertions, 9 deletions
diff --git a/app/src/main/res/layout/home_fragment.xml b/app/src/main/res/layout/home_fragment.xml
index 0c5d872b3..fca9406a8 100644
--- a/app/src/main/res/layout/home_fragment.xml
+++ b/app/src/main/res/layout/home_fragment.xml
@@ -65,18 +65,25 @@
</LinearLayout>
- <androidx.core.widget.NestedScrollView
- android:id="@+id/homeScrollView"
+ <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
+ android:id="@+id/swipeRefresh"
android:layout_width="match_parent"
- android:layout_height="wrap_content">
+ android:layout_height="match_parent">
- <LinearLayout
- android:id="@+id/homeContainer"
+ <androidx.core.widget.NestedScrollView
+ android:id="@+id/homeScrollView"
android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:paddingBottom="12dp" />
+ android:layout_height="wrap_content">
+
+ <LinearLayout
+ android:id="@+id/homeContainer"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:paddingBottom="12dp" />
+
+ </androidx.core.widget.NestedScrollView>
- </androidx.core.widget.NestedScrollView>
+ </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</LinearLayout>