React Native不支持反向折弯方向规则,例如row-reverse
和column-reverse
。此外,它具体oneOf([ 'row', 'column' ])
,尽管MDN docs中已有说明。
我的第一个想法是在原生环境中很难实现,但我发现只需使用justifyContent: 'center'
即可模仿反向行为。 (https://rnplay.org/apps/o5Gr3Q)
我的问题是,有没有解释为什么React Native不支持这些规则或者它是一个错误?
答案 0 :(得分:3)
编辑:我没有尝试过但是从0.29开始它似乎得到了支持。 (https://github.com/facebook/react-native/commit/d43e0db81e86d4d03638cd17034086717fe715a3)
目前不支持。 React Native使用https://github.com/facebook/css-layout#supported-attributes进行布局,它也不支持反向,所以必须在那里实现。