react native怎么开发
React Native 开发需要以下步骤:
- 安装 Node.js 和 npm。
- 安装 React Native CLI 工具:
npm install -g react-native-cli
。 - 创建新项目:
react-native init AwesomeProject
。 - 进入项目目录:
cd AwesomeProject
。 - 启动开发服务器:
react-native start
。 在不同平台上运行应用:
- iOS:在 Xcode 中打开
ios/AwesomeProject.xcodeproj
并运行,或者使用react-native run-ios
。 - Android:确保已经设置好 Android 开发环境,然后使用
react-native run-android
。
- iOS:在 Xcode 中打开
示例代码(App.js
):
import React from 'react';
import { View, Text } from 'react-native';
const App = () => {
return (
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
<Text>Hello, React Native!</Text>
</View>
);
};
export default App;
确保你的开发环境配置正确,并且所需的模拟器或真实设备已连接。
评论已关闭