obipawan / react-native-dash

A super simple <Dash /> component for react-native to draw customisable dashed lines
176 stars 64 forks source link

How to make a Dashed View Box ? #25

Open Malikkhoja-zz opened 5 years ago

Malikkhoja-zz commented 5 years ago

Hi,

I have used this library to make a dashed line and it works really well. However, I want to make a dashed view box using the same library? Is it possible to achieve it?

I have tried to make a dashed view box using below code:

<View style={{
      borderStyle: "dashed",
      borderWidth: 1,
      borderRadius: 1,
    }}>
    </View>

It works fine, well I am not able to give dashThickness and dashLength like in this library.

Can some one help?

Thanks in advance