Android模拟器不会显示来自React-Native的消息

时间:2019-11-13 16:57:56

标签: react-native react-native-android

所以我已经使用以下命令在React Native中安装了我的第一个应用程序

$ npm install -g expo-cli
$ expo init confusion
$ cd confusion
$ yarn start

然后我看到了这个终端

terminal message

我从Android Studio中打开了模拟器,并选择了选项 a 这就是我所看到的。

emulator

这是正确的吗?欢迎消息在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',
  },
});

0 个答案:

没有答案