From 709e6d135a596b39fe681f0e8b840d5bcf65ba4d Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Mon, 18 Nov 2019 02:19:55 +0000 Subject: [PATCH] Deploy website Deploy website version based on c9423c6483787b7d6a56b63950616216839fa6a5 --- docs/next/debugging.html | 3 +++ docs/next/debugging/index.html | 3 +++ docs/next/linking.html | 4 ++-- docs/next/linking/index.html | 4 ++-- docs/next/navigation.html | 4 +++- docs/next/navigation/index.html | 4 +++- 6 files changed, 16 insertions(+), 6 deletions(-) diff --git a/docs/next/debugging.html b/docs/next/debugging.html index ab30bb7ff3e..12127a52bcd 100644 --- a/docs/next/debugging.html +++ b/docs/next/debugging.html @@ -119,6 +119,9 @@ YellowBox.ig

React Developer Tools

You can use the standalone version of React Developer Tools to debug the React component hierarchy. To use it, install the react-devtools package globally:

+
+

Note: Version 4 of react-devtools requires react-native version 0.62 or higher to work properly.

+
npm install -g react-devtools
 

Now run react-devtools from the terminal to launch the standalone DevTools app:

diff --git a/docs/next/debugging/index.html b/docs/next/debugging/index.html index ab30bb7ff3e..12127a52bcd 100644 --- a/docs/next/debugging/index.html +++ b/docs/next/debugging/index.html @@ -119,6 +119,9 @@ YellowBox.ig

React Developer Tools

You can use the standalone version of React Developer Tools to debug the React component hierarchy. To use it, install the react-devtools package globally:

+
+

Note: Version 4 of react-devtools requires react-native version 0.62 or higher to work properly.

+
npm install -g react-devtools
 

Now run react-devtools from the terminal to launch the standalone DevTools app:

diff --git a/docs/next/linking.html b/docs/next/linking.html index dfb18cb666e..1553eb3f71e 100644 --- a/docs/next/linking.html +++ b/docs/next/linking.html @@ -128,10 +128,10 @@

And then on your React component you'll be able to listen to the events on Linking as follows:

componentDidMount() {
   Linking.addEventListener('url', this._handleOpenURL);
-},
+}
 componentWillUnmount() {
   Linking.removeEventListener('url', this._handleOpenURL);
-},
+}
 _handleOpenURL(event) {
   console.log(event.url);
 }
diff --git a/docs/next/linking/index.html b/docs/next/linking/index.html
index dfb18cb666e..1553eb3f71e 100644
--- a/docs/next/linking/index.html
+++ b/docs/next/linking/index.html
@@ -128,10 +128,10 @@
 

And then on your React component you'll be able to listen to the events on Linking as follows:

componentDidMount() {
   Linking.addEventListener('url', this._handleOpenURL);
-},
+}
 componentWillUnmount() {
   Linking.removeEventListener('url', this._handleOpenURL);
-},
+}
 _handleOpenURL(event) {
   console.log(event.url);
 }
diff --git a/docs/next/navigation.html b/docs/next/navigation.html
index 2af6d9edb40..08805a7e2ea 100644
--- a/docs/next/navigation.html
+++ b/docs/next/navigation.html
@@ -74,7 +74,9 @@
 

React Navigation

The community solution to navigation is a standalone library that allows developers to set up the screens of an app with a few lines of code.

The first step is to install in your project:

-
npm install --save react-navigation
+
yarn add react-navigation
+# or with npm
+# npm install --save react-navigation
 

The second step is to install react-native-gesture-handler

yarn add react-native-gesture-handler
diff --git a/docs/next/navigation/index.html b/docs/next/navigation/index.html
index 2af6d9edb40..08805a7e2ea 100644
--- a/docs/next/navigation/index.html
+++ b/docs/next/navigation/index.html
@@ -74,7 +74,9 @@
 

React Navigation

The community solution to navigation is a standalone library that allows developers to set up the screens of an app with a few lines of code.

The first step is to install in your project:

-
npm install --save react-navigation
+
yarn add react-navigation
+# or with npm
+# npm install --save react-navigation
 

The second step is to install react-native-gesture-handler

yarn add react-native-gesture-handler