From b3f810c8fbfb2b37bae1244156afb43395f1f21c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Boro=C5=84?= Date: Fri, 23 Jan 2026 13:25:07 +0100 Subject: [PATCH 1/2] Add missing FormSheet Android props to 7.x docs --- .../version-7.x/native-stack-navigator.md | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/versioned_docs/version-7.x/native-stack-navigator.md b/versioned_docs/version-7.x/native-stack-navigator.md index 47f8888d632..fed4158429d 100755 --- a/versioned_docs/version-7.x/native-stack-navigator.md +++ b/versioned_docs/version-7.x/native-stack-navigator.md @@ -564,6 +564,42 @@ Defaults to `none`, indicating that the dimming view should be always present. Only supported on Android and iOS. +#### `sheetShouldOverflowTopInset` + +:::note + +Works only when `presentation` is set to `formSheet`. + +::: + +Boolean indicating whether the sheet content should be rendered behind the **status bar** or **display cutouts**. + +When set to `true`, the sheet will extend to the physical edges of the stack, allowing content to be visible behind the status bar or display cutouts. Detent ratios in `sheetAllowedDetents` will be measured relative to the **full stack height**. + +When set to `false`, the sheet's layout will be constrained by the inset from the top and the detent ratios will then be measured relative to the **adjusted height** (excluding the top inset). This means that `sheetAllowedDetents` will result in different sheet heights depending on this prop. + +Defaults to `false`. + +Only supported on Android. + +#### `sheetDefaultResizeAnimationEnabled` + +:::note + +Works only when `presentation` is set to `formSheet`. + +::: + +Boolean indicating whether the default native animation should be used when the sheet's content size changes (specifically when using `fitToContents`). + +When set to `true`, the sheet uses internal logic to synchronize size updates and translation animations during entry, exit, or content updates. This ensures a smooth transition for standard, static content mounting/unmounting. + +When set to `false`, the internal animation and translation logic is ignored. This allows the sheet to adjust its size dynamically based on the current dimensions of the content provided by the developer, allowing implementing **custom resizing animations**. + +Defaults to `true`. + +Only supported on Android. + #### `orientation` The display orientation to use for the screen. From 1ce7a2523e75a8de106170e5b9826181f288bc8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Boro=C5=84?= Date: Fri, 23 Jan 2026 14:12:08 +0100 Subject: [PATCH 2/2] Drop Default from name --- versioned_docs/version-7.x/native-stack-navigator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versioned_docs/version-7.x/native-stack-navigator.md b/versioned_docs/version-7.x/native-stack-navigator.md index fed4158429d..ea4a59edf18 100755 --- a/versioned_docs/version-7.x/native-stack-navigator.md +++ b/versioned_docs/version-7.x/native-stack-navigator.md @@ -582,7 +582,7 @@ Defaults to `false`. Only supported on Android. -#### `sheetDefaultResizeAnimationEnabled` +#### `sheetResizeAnimationEnabled` :::note