From b130d8eace671840abd5f46f171468c60c6bb331 Mon Sep 17 00:00:00 2001 From: Leighton Quito <2328848+iamleigh@users.noreply.github.com> Date: Thu, 20 Mar 2025 13:00:41 -0500 Subject: [PATCH] Update README.md Installation guidelines for new apps were incorrect since `react-native init` is deprecated. Instead is better to use `@react-native-community/cli`. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cb249cfad..36aaa28e6 100644 --- a/README.md +++ b/README.md @@ -38,13 +38,13 @@ There is a huge variety of customizable layouts, use “as is” or add new bloc Start a new app with UI Kitten template from a scratch: ```bash -npx react-native init MyApp --template @ui-kitten/template-js +npx @react-native-community/cli init MyApp --template @ui-kitten/template-js ``` Or, if you want to init with TypeScript: ```bash -npx react-native init MyApp --template @ui-kitten/template-ts +npx @react-native-community/cli init MyApp --template @ui-kitten/template-ts ``` This will setup a new React Native application configured with UI Kitten.