无法在React中找到变量`flex`

时间:2019-01-13 19:14:46

标签: reactjs react-native

样式设计时我无法使用变量flex。我希望它能工作,因为它包含在StyleSheet中。

enter image description here

2 个答案:

答案 0 :(得分:0)

可能是您尝试过{flex,... anotherProp} ...使用新的EcmaScript,您可以通过以下方式分配一个道具

let flex = 1
//and
let myObj = {flex} //outs=> {flex: 1} // the thing is that you might be writing wrong the props of your object, and or missing ","

答案 1 :(得分:0)

您似乎正在尝试使用类似于CSS的flex。在React Native中编写样式时,必须在前面加上引号。像这样:

display: "flex", justifyContent: "center", alignItems: "center"