如何在Native-Base中自定义Icon TextBox Form的边框?

时间:2017-06-01 06:06:36

标签: react-native native-base

我在我的反应项目中使用Native-Base。我想在Native-Base中自定义边框Icon TextBox表单的宽度。 这是我的代码

<Item>
   <Icon active name='lock' />
   <Input placeholder='password'/>
</Item>

这是节目

enter image description here

那么,如何在边框中自定义边距?感谢

1 个答案:

答案 0 :(得分:1)

尝试一下:

<Item>
   <Icon active name='lock' style={{borderWidth: 10}}/>
   <Input placeholder='password'/>
</Item>