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\'
border
shadow{Color, Radius, Opacity, Offset}
If you are looking for something similar to how CSS -webkit-text-stroke works, why not try react-native-svg?
import Svg, { Text } from "react-native-svg"; Yay!