1

How do I add an image border like this CSS in react native?

img {
  border: 20px solid black;
  border-image: url("xyzborderimage.jpg") 30 round;
  border-radius: 2px;
  height: 500px;
  width: 250;          
}
jnpdx
  • 45,847
  • 6
  • 64
  • 94

1 Answers1

0

You can use View Style Props with prefix name border, for example borderWidth: 2, borderColor: 'red', borderRadius: 8 you can read more on this link https://reactnative.dev/docs/view-style-props

Sultan Maulana
  • 2,716
  • 1
  • 6
  • 3