I'm a very beginner at react-native. I'm trying to design like the image given below. But can't make the red marked part. Can anyone help me to solve this by saying what CSS property should I use to design this part? I know I have to use border-radius but can't reach out what would be the other property for making the appropriate design like the image given.
React Native Border Css
599 Views Asked by megh At
2
There are 2 best solutions below
0

Take a look at the box-shadow
property (Docs here)
.card {
border-radius: 10px;
height: 100px;
width: 200px;
box-shadow: 0px 5px 6px -1px #58585838;
}
<div class="card">
</div>
Can you put your code so we can see where's the problem? But you can use these
properties
to change it:Example: