React Native - 忽略样式

时间:2018-06-16 17:24:37

标签: react-native

我有简单的组件

class Cart extends Component {
    render() {

            return (
                <View style={{ flex: 1  }}>
                    <View slyle={{ backgroundColor: 'blue', width: 200, height: 200}}>

                            <Text>12</Text>
                    </View>
                </View>
            );

    }
}

我得到了

enter image description here

我做错了什么?

1 个答案:

答案 0 :(得分:2)

您遇到语法错误:

 <View slyle={{ backgroundColor: 'blue', width: 200, height: 200}}>

应该是风格而不是 slyle

<View style={{ backgroundColor: 'blue', width: 200, height: 200}}>