我正在尝试使用reactjs和radium重复使用为Web应用程序构建的一些组件。
我有一个包含outline
css属性的组件。我重用了组件,不幸的是,我收到了这个错误:
react-native或ios android中$date = "Mar 03, 2016";
$date = strtotime($date);
$date = strtotime("+7 day", $date);
echo date('M d, Y', $date);
属性的替代方案是什么?
radium中是否有react-native替代?
我是否应该手动管理iOs DEV,android DEV以及web DEV之间的样式属性命名差异?
答案 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, }} />