所以我已经使用以下命令在React Native中安装了我的第一个应用程序
$ npm install -g expo-cli
$ expo init confusion
$ cd confusion
$ yarn start
然后我看到了这个终端
我从Android Studio中打开了模拟器,并选择了选项 a 这就是我所看到的。
这是正确的吗?欢迎消息在App.js中
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
export default function App() {
return (
<View style={styles.container}>
<Text>Open up App.js to start working on your app!</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#000',
alignItems: 'center',
justifyContent: 'center',
},
});