Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to draw dashed border style in react native

Tags:

I am using below style, I am trying to draw dashed border style but it always coming solid . Please suggest .

<View style={{paddingLeft:10,
 height:300, marginBottom:10, 
 borderWidth:1,
 borderStyle: 'dashed',
 borderColor:'red',
 borderTopColor:'white'}}>

// Thanks

like image 240
Abhigyan Gaurav Avatar asked Jun 13 '19 07:06

Abhigyan Gaurav


People also ask

How do you increase space between dotted border dots react native?

You can adjust the size with background-size and the proportion with the linear-gradient percentages. In this example I have a dotted line of 1px dots and 2px spacing. This way you can have multiple dotted borders too using multiple backgrounds.


2 Answers

You need to add borderRadius: 1 to make it work.

like image 107
Emil Avatar answered Oct 07 '22 04:10

Emil


Try following it should work

borderStyle: 'dotted',
borderRadius: 1,
like image 25
Sumit Patel Avatar answered Oct 07 '22 05:10

Sumit Patel