Skip to content

Commit 2cd48ef

Browse files
alanleedevfacebook-github-bot
authored andcommittedNov 1, 2024·
fix Modal content being cut off when Android Activity is edge-to-edge (#47339)
Summary: Pull Request resolved: #47339 Fixing issue raised in #47307 This is a follow up from D62286026. It appears there was a line that went missing while trying to refactor the code. `fitsSystemWindows = true` is needeod for < API 30 to avoid content rendering under the system bars when Modal is shown with Activity that is edge-to-edge. Changelog: [Android][Fixed] Fix Regression - Modal content rendering below system bar on < API 30 when activity is edge-to-edge Reviewed By: cortinico Differential Revision: D65280014 fbshipit-source-id: 616ff739be55635f1295ef3bf8b997a27ef769ae
1 parent 65cdd5b commit 2cd48ef

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed
 

‎packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/modal/ReactModalHostView.kt

+8-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,14 @@ public class ReactModalHostView(context: ThemedReactContext) :
300300
* changed. This has the pleasant side-effect of us not having to preface all Modals with "top:
301301
* statusBarHeight", since that margin will be included in the FrameLayout.
302302
*/
303-
get() = FrameLayout(context).apply { addView(dialogRootViewGroup) }
303+
get() =
304+
FrameLayout(context).apply {
305+
addView(dialogRootViewGroup)
306+
if (!statusBarTranslucent) {
307+
// this is needed to prevent content hiding behind systems bars < API 30
308+
this.fitsSystemWindows = true
309+
}
310+
}
304311

305312
/**
306313
* updateProperties will update the properties that do not require us to recreate the dialog

0 commit comments

Comments
 (0)
Please sign in to comment.