How to create text border in React Native?

前端 未结 9 1553
清歌不尽
清歌不尽 2021-02-01 14:14

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\'

9条回答
  •  一向
    一向 (楼主)
    2021-02-01 14:31

    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!
      
    
    

提交回复
热议问题