From ab897953bff39b18f1508b93b5fb3edff6a822a0 Mon Sep 17 00:00:00 2001 From: Alex Hart Date: Tue, 26 Jul 2022 12:59:47 -0300 Subject: [PATCH] Add padding to bottom of stories landing recycler. --- app/src/main/res/layout/stories_landing_fragment.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/src/main/res/layout/stories_landing_fragment.xml b/app/src/main/res/layout/stories_landing_fragment.xml index 6f791fd24..b12e8e5b9 100644 --- a/app/src/main/res/layout/stories_landing_fragment.xml +++ b/app/src/main/res/layout/stories_landing_fragment.xml @@ -19,6 +19,9 @@ android:id="@+id/recycler" android:layout_width="match_parent" android:layout_height="0dp" + android:clipChildren="false" + android:clipToPadding="false" + android:paddingBottom="88dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent"