文本字符串必须在<Text>组件中呈现。反应本机错误

时间:2020-10-10 19:57:09

标签: react-native button

当我在视图中添加按钮时,会引发此错误(标题中)。该代码适用于此

return (
        <View >
            <Text>trade</Text>
            <Button
                title="Press me"
                onPress={() => Alert.alert('Simple Button pressed')}
            />
        </View>
    ); 
}

但对于这一点却没有:

return (
        <View >
            <Text>trade</Text>
            
        </View>
    );

1 个答案:

答案 0 :(得分:0)

我在终端上运行了以下代码,现在可以运行: npm install -g react-native @ latest