From aab2fdec73c1bea3d8ab7c6e0d845c7e1f54a6ec Mon Sep 17 00:00:00 2001 From: Jamil Date: Mon, 10 Mar 2025 15:11:44 +0000 Subject: [PATCH] fix(android): Remove fitsSystemWindows from bottom sheet layout (#8406) This overrides the padding set in the bottom sheet, and is unnecessary because the outer-most layout contains `fitsSystemWindows=true`. Fixes #8384 --- .../app/src/main/res/layout/fragment_resource_details.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kotlin/android/app/src/main/res/layout/fragment_resource_details.xml b/kotlin/android/app/src/main/res/layout/fragment_resource_details.xml index 9acaff1d9..871dc38e9 100644 --- a/kotlin/android/app/src/main/res/layout/fragment_resource_details.xml +++ b/kotlin/android/app/src/main/res/layout/fragment_resource_details.xml @@ -3,8 +3,7 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" - android:padding="@dimen/spacing_medium" - android:fitsSystemWindows="true"> + android:padding="@dimen/spacing_medium">