1

我一直在为我的 React Native 项目使用 NativeBase。

我可以使用内联样式来增加<Button />组件的边框大小。有没有办法为 NativeBase 中使用的所有按钮设置样式?

4

1 回答 1

0

如果您查看此文件https://github.com/GeekyAnts/NativeBase/blob/master/Components/Widgets/Button.js

使用方法设置 TouchableHighlight 组件的样式prepareRootProps

其中有borderWidth: (this.props.bordered) ? 1 : 0,

所以,如果你这样做了<Button bordered=true />。它将borderWidth设置为1。但是它似乎不允许定义您自己的宽度。

于 2016-07-28T22:06:11.670 回答