From f99b85753de01baec6a03278f9e3a5ac447745e6 Mon Sep 17 00:00:00 2001 From: Gabriel dos Santos Oliveira <86084272+GabrieldosSantosOliveira@users.noreply.github.com> Date: Mon, 25 Sep 2023 05:24:15 -0400 Subject: [PATCH] docs: update deprecated expo install instructions to `npx expo install` (#1899) ## Description Changed expo install react-native-screens to npx expo install react-native-screens, because global expo-cli is deprecated [docs-expo-cli](https://docs.expo.dev/archive/expo-cli/) ## Changes - Updated `README.md` docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a137e3db45..07006c505c 100644 --- a/README.md +++ b/README.md @@ -114,7 +114,7 @@ To configure react-navigation to use screens instead of plain RN Views for rende yarn add react-native-screens # if you use Expo managed workflow -expo install react-native-screens +npx expo install react-native-screens ``` Just make sure that the version of [react-navigation](https://github.com/react-navigation/react-navigation) you are using is 2.14.0 or higher.