diff --git a/docs/next/navigation.html b/docs/next/navigation.html index 659dd5232dc..8b111d8bbcc 100644 --- a/docs/next/navigation.html +++ b/docs/next/navigation.html @@ -66,6 +66,14 @@

The first step is to install in your project:

npm install --save react-navigation
 
+

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

+
yarn add react-native-gesture-handler
+# or with npm
+# npm install --save react-native-gesture-handler
+
+

Now we need to link our react-native to react-native-gesture-handler

+
react-native link react-native-gesture-handler
+

Then you can quickly create an app with a home screen and a profile screen:

import {createStackNavigator, createAppContainer} from 'react-navigation';
 
diff --git a/docs/next/navigation/index.html b/docs/next/navigation/index.html
index 659dd5232dc..8b111d8bbcc 100644
--- a/docs/next/navigation/index.html
+++ b/docs/next/navigation/index.html
@@ -66,6 +66,14 @@
 

The first step is to install in your project:

npm install --save react-navigation
 
+

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

+
yarn add react-native-gesture-handler
+# or with npm
+# npm install --save react-native-gesture-handler
+
+

Now we need to link our react-native to react-native-gesture-handler

+
react-native link react-native-gesture-handler
+

Then you can quickly create an app with a home screen and a profile screen:

import {createStackNavigator, createAppContainer} from 'react-navigation';