Android:应用程序在下载 JS 包后崩溃

Android: app crashes after downloading JS bundle

当我 运行 我的应用程序在 ios 模拟器上运行时,它可以正常运行而不会崩溃。但是当我 运行 它在 android 模拟器上时,expo 下载 JS 包但在 2-3 秒后(在 expo 加载时),它崩溃了,返回 android 主页.. .

App.js :

import React from 'react';
import { Text, View, SafeAreaView } from 'react-native';

const App = () => {
  return (
    <View
      style={{
        flex: 1,
        justifyContent: 'Center',
        alignItems: 'Center',
        backgroundColor: 'rgb(255,255,255)',
      }}>
      <Text
        style={{
          color: 'rgb(44,44,44)',
          textAlign: 'center',
          width: '100%',
        }}>
        Hello World!
      </Text>
    </View>
  );
};

export default App;

谢谢!

在样式中使用字符串的小写值。

import React from 'react';
import { Text, View, SafeAreaView } from 'react-native';

const App = () => {
  return (
    <View
      style={{
        flex: 1,
        justifyContent: 'center', // <-- fixed
        alignItems: 'center', // <-- fixed
        backgroundColor: 'rgb(255,255,255)',
      }}>
      <Text
        style={{
          color: 'rgb(44,44,44)',
          textAlign: 'center',
          width: '100%',
        }}>
        Hello World!
      </Text>
    </View>
  );
};

export default App;