在为Android构建反应原生应用程序时,我收到了错误
无法将没有瑜伽节点的孩子添加到没有瑜伽节点的父节点 衡量功能
我尝试打开和关闭远程调试器,但问题仍然存在。
粘贴我的组件功能如下。
import React, { Component } from 'react';
import { Text, TouchableWithoutFeedback, View } from 'react-native';
import { connect } from 'react-redux';
import { CardSection } from './common';
import * as actions from '../actions';
class ListItem extends Component {
render() {
const { title, id } = this.props.library;
const { titleStyle } = styles;
return (
<TouchableWithoutFeedback
onPress ={() => this.props.selectLibrary(id)}
>
<View> /* Using View as more then one card section is used */
<CardSection>
<Text style={titleStyle} >
{title}
</Text>
</CardSection>
</View>
</TouchableWithoutFeedback>
)
}
}
const styles = {
titleStyle: {
fontSize:18,
paddingLeft:10
}
};
export default connect(null, actions)(ListItem);
答案 0 :(得分:1)
一旦我将View标记前面的注释移动到其他位置(例如,在return语句之前),问题就解决了