in my site i have a title with this text shadow:
h1.title {
text-shadow: -1px 1px 10px rgba(0, 0, 0, 0.75)
}
<h1 class="title">title</h1>
I want do the same in my react native app.
I've seen the properties:
textShadowColor color
textShadowOffset {width: number, height: number}
textShadowRadius number
but I don't knows how to have the same effect of html.
How can I do?