Skip to content

Commit cd5fe4b

Browse files
committed
Add some links for next-steps
1 parent d1393ff commit cd5fe4b

File tree

3 files changed

+35
-9
lines changed

3 files changed

+35
-9
lines changed

versioned_docs/version-6.x/next-steps.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,21 @@ title: Next steps
44
sidebar_label: Next steps
55
---
66

7-
You are now familiar with how to create a stack navigator, configure it on your screen components, navigate between routes, and display modals. Stack navigators and their related APIs will be the most frequently used tools in your React Navigation toolbelt, but there are problems that they don't solve. For example, you can't build tab-based navigation using a stack navigator — for that, you need to use a [TabNavigator](tab-based-navigation.md).
7+
You are now familiar with how to create a stack navigator, configure it on your screen components, navigate between routes, and display modals. Stack navigators and their related APIs will be the most frequently used tools in your React Navigation toolbelt, but there are problems that they don't solve. For example, you can't build tab-based navigation using a stack navigator — for that, you need to use a [Bottom Tabs Navigator](bottom-tab-navigator.md).
88

99
The rest of the documentation is organized around specific use cases, so you can jump between the sections under "Guides" as the need arises (but it also wouldn't hurt you to familiarize yourself with them pre-emptively!).
1010

11-
While most users won't need to do this, if you are curious and want to learn more about how React Navigation works, it's recommended to work through the "Build your own Navigator" section.
11+
Some of the guides you may want to check out are:
12+
13+
- [Tab navigation](tab-based-navigation.md): How to show tabs at the bottom of the screen.
14+
- [Drawer navigation](drawer-based-navigation.md): How to show a drawer from the left or right side of the screen.
15+
- [Authentication flows](auth-flow.md): How to handle authentication flows in your app.
16+
- [Supporting safe areas](handling-safe-area.md): How to handle safe areas such as statusbar in your app.
17+
- [Deep linking](deep-linking.md): How to handle deep linking and universal links in your app.
18+
- [Themes](themes.md): How to customize the look and feel of various UI elements.
19+
- [Testing with Jest](testing.md): How to test your navigation components.
20+
- [Configuring TypeScript](typescript.md): How to configure TypeScript for React Navigation.
21+
22+
While most users won't need to do this, if you are curious and want to learn more about how React Navigation works, it's recommended to work through the [Navigation State reference](navigation-state.md) and [Build your own Navigator](custom-navigators.md) sections.
1223

1324
Good luck!

versioned_docs/version-7.x/next-steps.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,21 @@ title: Next steps
44
sidebar_label: Next steps
55
---
66

7-
You are now familiar with how to create a stack navigator, configure it on your screen components, navigate between routes, and display modals. Stack navigators and their related APIs will be the most frequently used tools in your React Navigation toolbelt, but there are problems that they don't solve. For example, you can't build tab-based navigation using a stack navigator — for that, you need to use a [TabNavigator](tab-based-navigation.md).
7+
You are now familiar with how to create a stack navigator, configure it on your screen components, navigate between routes, and display modals. Stack navigators and their related APIs will be the most frequently used tools in your React Navigation toolbelt, but there are problems that they don't solve. For example, you can't build tab-based navigation using a stack navigator — for that, you need to use a [Bottom Tabs Navigator](bottom-tab-navigator.md).
88

99
The rest of the documentation is organized around specific use cases, so you can jump between the sections under "Guides" as the need arises (but it also wouldn't hurt you to familiarize yourself with them pre-emptively!).
1010

11-
While most users won't need to do this, if you are curious and want to learn more about how React Navigation works, it's recommended to work through the "Build your own Navigator" section.
11+
Some of the guides you may want to check out are:
12+
13+
- [Tab navigation](tab-based-navigation.md): How to show tabs at the bottom of the screen.
14+
- [Drawer navigation](drawer-based-navigation.md): How to show a drawer from the left or right side of the screen.
15+
- [Authentication flows](auth-flow.md): How to handle authentication flows in your app.
16+
- [Supporting safe areas](handling-safe-area.md): How to handle safe areas such as statusbar in your app.
17+
- [Deep linking](deep-linking.md): How to handle deep linking and universal links in your app.
18+
- [Themes](themes.md): How to customize the look and feel of various UI elements.
19+
- [Testing with Jest](testing.md): How to test your navigation components.
20+
- [Configuring TypeScript](typescript.md): How to configure TypeScript for React Navigation.
21+
22+
While most users won't need to do this, if you are curious and want to learn more about how React Navigation works, it's recommended to work through the [Navigation State reference](navigation-state.md) and [Build your own Navigator](custom-navigators.md) sections.
1223

1324
Good luck!

versioned_sidebars/version-6.x-sidebars.json

+9-5
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,7 @@
99
"header-buttons",
1010
"nesting-navigators",
1111
"navigation-lifecycle",
12-
"next-steps",
13-
"glossary-of-terms",
14-
"troubleshooting",
15-
"limitations"
12+
"next-steps"
1613
],
1714
"Guides": [
1815
"tab-based-navigation",
@@ -41,6 +38,7 @@
4138
"typescript",
4239
"redux-integration",
4340
"MST-integration",
41+
"troubleshooting",
4442
"upgrading-from-5.x"
4543
],
4644
"Navigators": [
@@ -99,6 +97,12 @@
9997
"navigation-solutions-and-community-libraries",
10098
"more-resources"
10199
],
102-
"Meta": ["pitch", "used-by", "contributing"]
100+
"Meta": [
101+
"glossary-of-terms",
102+
"pitch",
103+
"limitations",
104+
"used-by",
105+
"contributing"
106+
]
103107
}
104108
}

0 commit comments

Comments
 (0)