我正在使用Snack在React Native(Expo)中创建一个应用程序。该程序已经运行了一个小时,但是现在显示此错误。
Device: Text strings must be rendered within a <Text> component.
我知道为什么会发生此错误,但我不知道错误在哪里。
事物尝试: 已检查
<Text>
组件之外的潜在文字答案 0 :(得分:2)
在ButtonGroup.js中
<Button
onPress={() => {
this.props.navigation.navigate('Project_Submit');
}}
icon="publish"
type="entypo"
name="Submit Project"
/>{' '}
Replace with
<Button
onPress={() => {
this.props.navigation.navigate('Project_Submit');
}}
icon="publish"
type="entypo"
name="Submit Project"
/>
第31行是文字