ide / react-native-button

A button for React apps
MIT License
773 stars 129 forks source link

Border Width #58

Open andreecosta opened 7 years ago

andreecosta commented 7 years ago

Is it possible to add border to the button? I was using native-base with a border, but this library is so much lighter, but I can't figure out how to add a border.

jeremyflores commented 7 years ago

It looks like the Button component just uses the standard View styling: http://facebook.github.io/react-native/releases/0.28/docs/view.html#style

So you should get it working by adding these styles for example:

borderRadius: 4,
borderColor: 'blue',
borderWidth: 2,