From 4f67c3007ea292e8336b9443f8fe178ce8e3f4f2 Mon Sep 17 00:00:00 2001 From: stanleyoos Date: Thu, 8 Aug 2024 11:14:00 +0200 Subject: [PATCH 1/4] docs: Fixed typo in v7 --- versioned_docs/version-7.x/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versioned_docs/version-7.x/getting-started.md b/versioned_docs/version-7.x/getting-started.md index 00b4f6cb33..8bbbc8b76e 100755 --- a/versioned_docs/version-7.x/getting-started.md +++ b/versioned_docs/version-7.x/getting-started.md @@ -157,7 +157,7 @@ export default function App() { :::warning -In a typical React Native app, the `NavigationContainer` should be only used once in your app at the root. You shouldn't nest multiple `NavigationContainer`s unless you have a specific use case for them. +In a typical React Native app, the `NavigationContainer` should be only used once in your app at the root. You shouldn't nest multiple `NavigationContainers` unless you have a specific use case for them. ::: From ca574d9f6db52a207640e1e7711f5e2c7d360db1 Mon Sep 17 00:00:00 2001 From: stanleyoos Date: Thu, 8 Aug 2024 11:46:18 +0200 Subject: [PATCH 2/4] docs: Fixed typo in limitations.md v7 --- versioned_docs/version-7.x/limitations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versioned_docs/version-7.x/limitations.md b/versioned_docs/version-7.x/limitations.md index 8ef876a59f..0958770e95 100755 --- a/versioned_docs/version-7.x/limitations.md +++ b/versioned_docs/version-7.x/limitations.md @@ -4,7 +4,7 @@ title: Limitations sidebar_label: Limitations --- -As a potential user of the library, it's important to know what you can and cannot do with it. Armed with this knowledge, you may choose to adopt a different library such as [`react-native=navigation`](https://github.com/wix/react-native-navigation) instead. We discuss the high level design decisions in the [pitch & anti-pitch](pitch.md) section, and here we will cover some of the use cases that are either not supported or are so difficult to do that they may as well be impossible. If any of the following limitations are dealbreakers for your app, React Navigation might not be for you. +As a potential user of the library, it's important to know what you can and cannot do with it. Armed with this knowledge, you may choose to adopt a different library such as [`react-native-navigation`](https://github.com/wix/react-native-navigation) instead. We discuss the high level design decisions in the [pitch & anti-pitch](pitch.md) section, and here we will cover some of the use cases that are either not supported or are so difficult to do that they may as well be impossible. If any of the following limitations are dealbreakers for your app, React Navigation might not be for you. ## Limited right-to-left (RTL) layout support From 521099b3edf509ad77aaeed96d2fea8ea8a59e67 Mon Sep 17 00:00:00 2001 From: stanleyoos Date: Thu, 8 Aug 2024 12:47:04 +0200 Subject: [PATCH 3/4] docs: commit reset --- versioned_docs/version-7.x/getting-started.md | 2 +- versioned_docs/version-7.x/limitations.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/versioned_docs/version-7.x/getting-started.md b/versioned_docs/version-7.x/getting-started.md index 8bbbc8b76e..00b4f6cb33 100755 --- a/versioned_docs/version-7.x/getting-started.md +++ b/versioned_docs/version-7.x/getting-started.md @@ -157,7 +157,7 @@ export default function App() { :::warning -In a typical React Native app, the `NavigationContainer` should be only used once in your app at the root. You shouldn't nest multiple `NavigationContainers` unless you have a specific use case for them. +In a typical React Native app, the `NavigationContainer` should be only used once in your app at the root. You shouldn't nest multiple `NavigationContainer`s unless you have a specific use case for them. ::: diff --git a/versioned_docs/version-7.x/limitations.md b/versioned_docs/version-7.x/limitations.md index 8ef876a59f..0958770e95 100755 --- a/versioned_docs/version-7.x/limitations.md +++ b/versioned_docs/version-7.x/limitations.md @@ -4,7 +4,7 @@ title: Limitations sidebar_label: Limitations --- -As a potential user of the library, it's important to know what you can and cannot do with it. Armed with this knowledge, you may choose to adopt a different library such as [`react-native=navigation`](https://github.com/wix/react-native-navigation) instead. We discuss the high level design decisions in the [pitch & anti-pitch](pitch.md) section, and here we will cover some of the use cases that are either not supported or are so difficult to do that they may as well be impossible. If any of the following limitations are dealbreakers for your app, React Navigation might not be for you. +As a potential user of the library, it's important to know what you can and cannot do with it. Armed with this knowledge, you may choose to adopt a different library such as [`react-native-navigation`](https://github.com/wix/react-native-navigation) instead. We discuss the high level design decisions in the [pitch & anti-pitch](pitch.md) section, and here we will cover some of the use cases that are either not supported or are so difficult to do that they may as well be impossible. If any of the following limitations are dealbreakers for your app, React Navigation might not be for you. ## Limited right-to-left (RTL) layout support From 83b9970536d0aae2e71521d2ee404edf3aee7701 Mon Sep 17 00:00:00 2001 From: stanleyoos Date: Thu, 8 Aug 2024 14:13:53 +0200 Subject: [PATCH 4/4] docs: fixed typo in handling-safe-area --- .../version-7.x/handling-safe-area.md | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/versioned_docs/version-7.x/handling-safe-area.md b/versioned_docs/version-7.x/handling-safe-area.md index 6d5ced2dcf..207dbbc500 100755 --- a/versioned_docs/version-7.x/handling-safe-area.md +++ b/versioned_docs/version-7.x/handling-safe-area.md @@ -65,7 +65,7 @@ function Demo() { // codeblock-focus-start const MyTabs = createBottomTabNavigator({ - initialRouteName: 'Analitics', + initialRouteName: 'Analytics', // highlight-start tabBar: () => null, screenOptions: { @@ -73,7 +73,7 @@ const MyTabs = createBottomTabNavigator({ }, // highlight-end screens: { - Analitics: Demo, + Analytics: Demo, Profile: Demo, }, }); @@ -133,11 +133,11 @@ export default function App() { {() => ( null} screenOptions={{ headerShown: false }} > - + )} @@ -195,13 +195,13 @@ function Demo() { // codeblock-focus-end const MyTabs = createBottomTabNavigator({ - initialRouteName: 'Analitics', + initialRouteName: 'Analytics', tabBar: () => null, screenOptions: { headerShown: false, }, screens: { - Analitics: Demo, + Analytics: Demo, Profile: Demo, }, }); @@ -285,11 +285,11 @@ export default function App() { {() => ( null} screenOptions={{ headerShown: false }} > - + )} @@ -363,13 +363,13 @@ function Demo() { // codeblock-focus-end const MyTabs = createBottomTabNavigator({ - initialRouteName: 'Analitics', + initialRouteName: 'Analytics', tabBar: () => null, screenOptions: { headerShown: false, }, screens: { - Analitics: Demo, + Analytics: Demo, Profile: Demo, }, }); @@ -448,11 +448,11 @@ export default function App() { {() => ( null} screenOptions={{ headerShown: false }} > - + )}