Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions versioned_docs/version-7.x/native-bottom-tab-navigator.md
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,18 @@ The display mode for the tab bar. Supported values:

Only supported on iOS 18 and above. Not supported on tvOS.

#### `overrideScrollViewContentInsetAdjustmentBehavior`

Whether to override the `contentInsetAdjustmentBehavior` of the first `ScrollView` in the first descendant chain from the tab screen.

By default, React Native's `ScrollView` has `contentInsetAdjustmentBehavior` set to `never` instead of UIKit's default `automatic`. Setting this option to `true` restores the automatic behavior so scroll views respect navigation bar insets.

Set this option to `false` to disable this behavior for specific screens.

Defaults to `true`.

Only supported on iOS.

#### `tabBarMinimizeBehavior`

The minimize behavior for the tab bar. Supported values:
Expand Down
Loading