当我使用expo在手机中运行代码时,React Native出现此错误

时间:2020-05-21 03:21:01

标签: javascript reactjs react-native react-native-android expo

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

const ComponentsScreen = () => {
    return ( 
        <View>
            <Text style={styles.textStyle}> Hello World! </Text>
        </View>
    );
}

const styles = StyleSheet.Create({
    textStyle: {
       fontsize: 30
    } 
});

export default ComponentsScreen;

Here is the picture link

不知道这里是什么错误,请帮帮我。

1 个答案:

答案 0 :(得分:1)

StyleSheet.Create C更改为小写,例如:

const styles = StyleSheet.create({

会没事的。