From e96f4954dbfd98760660f12ffca22bd568419ff1 Mon Sep 17 00:00:00 2001 From: scottmas Date: Mon, 25 Feb 2019 08:41:22 -0700 Subject: [PATCH 1/3] Update docs The docs do not state that react-native-screens is also used by default for the tab and drawer navigators. I updated the docs to include that. I didn't see support in any of the other navigators that I looked at, but if there are any others, we should update the documentation for them as well. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fa86ec98..b1b6b0e3 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Read usage guide depending on if you are [using Expo](#usage-in-expo-with-react- ## Usage with [react-navigation](https://github.com/react-navigation/react-navigation) (without Expo) -Screens support is built into [stack navigator](https://reactnavigation.org/docs/en/stack-navigator.html) starting from version [2.14.0](https://github.com/react-navigation/react-navigation/releases/tag/2.14.0) of [react-navigation](https://github.com/react-navigation/react-navigation). We plan on adding it to other navigators in near future. +Screens support is built into [stack navigator](https://reactnavigation.org/docs/en/stack-navigator.html), [tab navigator](https://reactnavigation.org/docs/en/tab-navigator.html), and [drawer navigator](https://reactnavigation.org/docs/en/drawer-navigator.html) starting from version [2.14.0](https://github.com/react-navigation/react-navigation/releases/tag/2.14.0) of [react-navigation](https://github.com/react-navigation/react-navigation). We plan on adding it to other navigators in near future. To enable stack navigator to use screens instead of plain RN Views for rendering stack cards follow the steps below: From 36aa843aaf4632336cc4218a522fccf94d6d68a0 Mon Sep 17 00:00:00 2001 From: scottmas Date: Mon, 25 Feb 2019 14:20:43 -0700 Subject: [PATCH 2/3] Tweak readme Tweak readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b1b6b0e3..766fde3b 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,9 @@ Read usage guide depending on if you are [using Expo](#usage-in-expo-with-react- ## Usage with [react-navigation](https://github.com/react-navigation/react-navigation) (without Expo) -Screens support is built into [stack navigator](https://reactnavigation.org/docs/en/stack-navigator.html), [tab navigator](https://reactnavigation.org/docs/en/tab-navigator.html), and [drawer navigator](https://reactnavigation.org/docs/en/drawer-navigator.html) starting from version [2.14.0](https://github.com/react-navigation/react-navigation/releases/tag/2.14.0) of [react-navigation](https://github.com/react-navigation/react-navigation). We plan on adding it to other navigators in near future. +Screens support is built into [react-navigation](https://github.com/react-navigation/react-navigation) starting from version [2.14.0](https://github.com/react-navigation/react-navigation/releases/tag/2.14.0) for all the different navigator types (stack, tab, drawer, etc). We plan on adding it to other navigators in near future. -To enable stack navigator to use screens instead of plain RN Views for rendering stack cards follow the steps below: +To enable react-navigationto use screens instead of plain RN Views for rendering screen views, follow the steps below: 1. Add this library as a depedency to your project: ``` From a0e7dd990b40bc581a5ea7666ca8b2c1921afb23 Mon Sep 17 00:00:00 2001 From: scottmas Date: Mon, 25 Feb 2019 15:06:50 -0700 Subject: [PATCH 3/3] Update Tweak --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 766fde3b..442c1077 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Read usage guide depending on if you are [using Expo](#usage-in-expo-with-react- Screens support is built into [react-navigation](https://github.com/react-navigation/react-navigation) starting from version [2.14.0](https://github.com/react-navigation/react-navigation/releases/tag/2.14.0) for all the different navigator types (stack, tab, drawer, etc). We plan on adding it to other navigators in near future. -To enable react-navigationto use screens instead of plain RN Views for rendering screen views, follow the steps below: +To configure react-navigation to use screens instead of plain RN Views for rendering screen views, follow the steps below: 1. Add this library as a depedency to your project: ```