Skip to content

Commit 42304b1

Browse files
committed
Tweak title for navigator pages
1 parent e267fca commit 42304b1

12 files changed

+30
-26
lines changed

versioned_docs/version-5.x/bottom-tab-navigator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: bottom-tab-navigator
3-
title: createBottomTabNavigator
4-
sidebar_label: createBottomTabNavigator
3+
title: Bottom Tabs Navigator
4+
sidebar_label: Bottom Tabs
55
---
66

77
A simple tab bar on the bottom of the screen that lets you switch between different routes. Routes are lazily initialized -- their screen components are not mounted until they are first focused.

versioned_docs/version-5.x/drawer-navigator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: drawer-navigator
3-
title: createDrawerNavigator
4-
sidebar_label: createDrawerNavigator
3+
title: Drawer Navigator
4+
sidebar_label: Drawer
55
---
66

77
Component that renders a navigation drawer which can be opened and closed via gestures.

versioned_docs/version-5.x/material-bottom-tab-navigator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: material-bottom-tab-navigator
3-
title: createMaterialBottomTabNavigator
4-
sidebar_label: createMaterialBottomTabNavigator
3+
title: Material Bottom Tabs Navigator
4+
sidebar_label: Material Bottom Tabs
55
---
66

77
A material-design themed tab bar on the bottom of the screen that lets you switch between different routes with animation. Routes are lazily initialized - their screen components are not mounted until they are first focused.

versioned_docs/version-5.x/material-top-tab-navigator.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: material-top-tab-navigator
3-
title: createMaterialTopTabNavigator
4-
sidebar_label: createMaterialTopTabNavigator
3+
title: Material Top Tabs Navigator
4+
sidebar_label: Material Top Tabs
55
---
66

77
A material-design themed tab bar on the top of the screen that lets you switch between different routes by tapping the tabs or swiping horizontally. Transitions are animated by default. Screen components for each route are mounted immediately.
@@ -22,6 +22,8 @@ npm install @react-navigation/material-top-tabs react-native-tab-view@^2.16.0
2222

2323
## API Definition
2424

25+
> 💡 If you encounter any bugs while using `createMaterialBottomTabNavigator`, please open issues on [`react-native-paper`](https://github.com/callstack/react-native-paper) rather than the `react-navigation` repository!
26+
2527
To use this tab navigator, import it from `@react-navigation/material-top-tabs`:
2628

2729
<samp id="material-top-tab-based-navigation-minimal" />

versioned_docs/version-5.x/native-stack-navigator.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: native-stack-navigator
3-
title: createNativeStackNavigator
4-
sidebar_label: createNativeStackNavigator
3+
title: Native Stack Navigator
4+
sidebar_label: Native Stack
55
---
66

77
Provides a way for your app to transition between screens where each new screen is placed on top of a stack.
@@ -16,7 +16,7 @@ To use this navigator, ensure that you have [`@react-navigation/native` and its
1616

1717
## API Definition
1818

19-
> 💡 If you encounter any bugs while using `createNativeStackNavigator`, please open isues on [react-native-screens](https://github.com/software-mansion/react-native-screens) rather than the react-navigation repository!
19+
> 💡 If you encounter any bugs while using `createNativeStackNavigator`, please open issues on [`react-native-screens`](https://github.com/software-mansion/react-native-screens) rather than the `react-navigation` repository!
2020
2121
To use this navigator, import `enableScreens` from `react-native-screens` and invoke it, and import `createNativeStackNavigator` from `react-native-screens/native-stack`:
2222

versioned_docs/version-5.x/stack-navigator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: stack-navigator
3-
title: createStackNavigator
4-
sidebar_label: createStackNavigator
3+
title: Stack Navigator
4+
sidebar_label: Stack
55
---
66

77
Provides a way for your app to transition between screens where each new screen is placed on top of a stack.

versioned_docs/version-6.x/bottom-tab-navigator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: bottom-tab-navigator
3-
title: createBottomTabNavigator
4-
sidebar_label: createBottomTabNavigator
3+
title: Bottom Tabs Navigator
4+
sidebar_label: Bottom Tabs
55
---
66

77
A simple tab bar on the bottom of the screen that lets you switch between different routes. Routes are lazily initialized -- their screen components are not mounted until they are first focused.

versioned_docs/version-6.x/drawer-navigator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: drawer-navigator
3-
title: createDrawerNavigator
4-
sidebar_label: createDrawerNavigator
3+
title: Drawer Navigator
4+
sidebar_label: Drawer
55
---
66

77
Component that renders a navigation drawer which can be opened and closed via gestures.

versioned_docs/version-6.x/material-bottom-tab-navigator.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: material-bottom-tab-navigator
3-
title: createMaterialBottomTabNavigator
4-
sidebar_label: createMaterialBottomTabNavigator
3+
title: Material Bottom Tabs Navigator
4+
sidebar_label: Material Bottom Tabs
55
---
66

77
A material-design themed tab bar on the bottom of the screen that lets you switch between different routes with animation. Routes are lazily initialized - their screen components are not mounted until they are first focused.
@@ -22,6 +22,8 @@ To use this tab navigator, import it from `@react-navigation/material-bottom-tab
2222

2323
## API Definition
2424

25+
> 💡 If you encounter any bugs while using `createMaterialBottomTabNavigator`, please open issues on [`react-native-paper`](https://github.com/callstack/react-native-paper) rather than the `react-navigation` repository!
26+
2527
To use this tab navigator, import it from `@react-navigation/material-bottom-tabs`:
2628

2729
<samp id="material-tab-based-navigation-minimal" />

versioned_docs/version-6.x/material-top-tab-navigator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: material-top-tab-navigator
3-
title: createMaterialTopTabNavigator
4-
sidebar_label: createMaterialTopTabNavigator
3+
title: Material Top Tabs Navigator
4+
sidebar_label: Material Top Tabs
55
---
66

77
A material-design themed tab bar on the top of the screen that lets you switch between different routes by tapping the tabs or swiping horizontally. Transitions are animated by default. Screen components for each route are mounted immediately.

versioned_docs/version-6.x/native-stack-navigator.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: native-stack-navigator
3-
title: createNativeStackNavigator
4-
sidebar_label: createNativeStackNavigator
3+
title: Native Stack Navigator
4+
sidebar_label: Native Stack
55
---
66

77
Native Stack Navigator provides a way for your app to transition between screens where each new screen is placed on top of a stack.
@@ -20,7 +20,7 @@ npm install @react-navigation/native-stack@next
2020

2121
## API Definition
2222

23-
> 💡 If you encounter any bugs while using `createNativeStackNavigator`, please open isues on [react-native-screens](https://github.com/software-mansion/react-native-screens) rather than the react-navigation repository!
23+
> 💡 If you encounter any bugs while using `createNativeStackNavigator`, please open issues on [`react-native-screens`](https://github.com/software-mansion/react-native-screens) rather than the `react-navigation` repository!
2424
2525
To use this navigator, import it from `@react-navigation/native-stack`:
2626

versioned_docs/version-6.x/stack-navigator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: stack-navigator
3-
title: createStackNavigator
4-
sidebar_label: createStackNavigator
3+
title: Stack Navigator
4+
sidebar_label: Stack
55
---
66

77
Native Stack Navigator provides a way for your app to transition between screens where each new screen is placed on top of a stack.

0 commit comments

Comments
 (0)