我正在使用 Snack 在 React Native (Expo) 中创建一个应用程序。该程序在一小时前运行,但现在显示此错误。Device: Text strings must be rendered within a <Text> component.小吃链接我知道为什么会发生此错误,但我不知道错误的确切位置。尝试的事情:检查<Text>组件中的潜在文本剩余空间
1 回答
鸿蒙传说
TA贡献1865条经验 获得超7个赞
在你的 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 行是一个文本
添加回答
举报
0/150
提交
取消