Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 9 additions & 1 deletion guides/GUIDE_FOR_LIBRARY_AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ Defaults to `false`.

### `navigationBarColor` (Android only)

This prop is **deprecated**. See [here](https://developer.android.com/about/versions/15/behavior-changes-15#ux).

Sets the navigation bar color. Defaults to initial status bar color.

### `navigationBarHidden` (Android only)
Expand Down Expand Up @@ -261,7 +263,9 @@ For iOS:

For Android:

`modal`, `containedModal`, `fullScreenModal`, `formSheet`, `pageSheet` will use `Screen.StackPresentation.MODAL`.
`modal`, `containedModal`, `fullScreenModal`, `pageSheet` will use `Screen.StackPresentation.MODAL`.

`formSheet` will use `Screen.StackPresentation.FORM_SHEET`.

`transparentModal`, `containedTransparentModal` will use `Screen.StackPresentation.TRANSPARENT_MODAL`.

Expand All @@ -273,6 +277,8 @@ Defaults to `fade` on iOS and `none` on Android.

### `statusBarColor` (Android only)

This prop is **deprecated**. See [here](https://developer.android.com/about/versions/15/behavior-changes-15#ux).

Sets the status bar color (similar to the `StatusBar` component). Defaults to initial status bar color.

### `statusBarHidden`
Expand All @@ -289,6 +295,8 @@ Defaults to `auto`.

### `statusBarTranslucent` (Android only)

This prop is **deprecated**. See [here](https://developer.android.com/about/versions/15/behavior-changes-15#ux).

Sets the translucency of the status bar (similar to the `StatusBar` component). Defaults to `false`.

### `swipeDirection` (iOS only)
Expand Down
2 changes: 1 addition & 1 deletion native-stack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ How the screen should be presented. Possible values:
- `containedModal` – will use "UIModalPresentationCurrentContext" modal style on iOS and will fallback to `"modal"` on Android.
- `containedTransparentModal` – will use "UIModalPresentationOverCurrentContext" modal style on iOS and will fallback to `"transparentModal"` on Android.
- `fullScreenModal` – will use "UIModalPresentationFullScreen" modal style on iOS and will fallback to `"modal"` on Android.
- `formSheet` – will use "UIModalPresentationFormSheet" modal style on iOS and will fallback to `"modal"` on Android.
- `formSheet` – will use "UIModalPresentationFormSheet" modal style on iOS and "BottomSheetBehavior" on Android.
- `pageSheet` – will use "UIModalPresentationPageSheet" modal style on iOS and will fallback to `"modal"` on Android.

Defaults to `push`.
Expand Down
2 changes: 1 addition & 1 deletion src/types.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export interface ScreenProps extends ViewProps {
*
* @deprecated For all apps targeting Android SDK 35 or above this prop has no effect and is subject to removal in the future.
* For SDK below 35 this works only with specific app setup.
* This props is subject to removal in the future.
* This prop is subject to removal in the future.
* See: https://developer.android.com/reference/android/view/Window#setNavigationBarColor(int)
*/
navigationBarColor?: ColorValue;
Expand Down
Loading