我有简单的组件
class Cart extends Component {
render() {
return (
<View style={{ flex: 1 }}>
<View slyle={{ backgroundColor: 'blue', width: 200, height: 200}}>
<Text>12</Text>
</View>
</View>
);
}
}
我得到了
我做错了什么?
答案 0 :(得分:2)
您遇到语法错误:
<View slyle={{ backgroundColor: 'blue', width: 200, height: 200}}>
应该是风格而不是 slyle
<View style={{ backgroundColor: 'blue', width: 200, height: 200}}>