"概要"不是有效的样式属性

时间:2016-11-02 07:58:56

标签: ios reactjs react-native radium

我正在尝试使用重复使用为Web应用程序构建的一些组件。

我有一个包含outline css属性的组件。我重用了组件,不幸的是,我收到了这个错误:

enter image description here

我的问题是:

  • $date = "Mar 03, 2016"; $date = strtotime($date); $date = strtotime("+7 day", $date); echo date('M d, Y', $date); 属性的替代方案是什么?

  • 中是否有替代?

  • 我是否应该手动管理iOs DEV,android DEV以及web DEV之间的样式属性命名差异?

1 个答案:

答案 0 :(得分:0)

我认为你正在寻找边框样式。

More specifically from the facebook react native docs

borderWidth ReactPropTypes.number
borderStyle ReactPropTypes.oneOf(['solid', 'dotted', 'dashed'])

因此,例如,如果你想用虚线制作一个10 x 10的盒子......

<View style={{ borderWidth:1, borderStyle: 'dashed', width: 10, height: 10, }} />