-
Notifications
You must be signed in to change notification settings - Fork 1
create app.cn
asteriskzuo edited this page Jun 26, 2024
·
3 revisions
# 官方创建方法
npx react-native@latest init AwesomeProject
# expo创建方法
npx create-expo-app AwesomeProject
# expo创建方法2
npx create-react-native-app
创建库的方法
# 方法1
npx create-react-native-library@latest awesome-library
# 方法2
npx create-expo-module@latest --local
pod install --project-directory=ios
- 如何创建指定版本的项目
npx react-native@latest init --version 0.73.2 AwesomeProject
- 如果创建 expo 指定
react-native
版本的项目- 无法直接指定版本。
- 如何创建指定版本的库项目
- 无法直接指定
react-native
版本。
- 无法直接指定
- 在expo的框架中,如何使用 uikit
- 创建的expo项目没有 ios和android文件夹,需要使用命令
npx expo prebuild --clean
,按照说明进行添加。 如果是老项目请到expo官网查看相关迁移说明。
- 创建的expo项目没有 ios和android文件夹,需要使用命令
扁平目录