In React-Native, how do I add font borders to Text-components?
I\'ve tried using border and shadow{Color, Radius, Opacity, Offset}, but haven\'
you can emulator border as two attributes :
textShadowColor color
textShadowOffset {width: number, height: number}
Ex:
textshadow:{
fontSize:100,
color:'#FFFFFF',
fontFamily:'Times New Roman',
paddingLeft:30,
paddingRight:30,
textShadowColor:'#585858',
textShadowOffset:{width: 5, height: 5},
textShadowRadius:10,
},