如何通过艺术绘制普通文本(ReactNative)?

时间:2017-10-26 05:53:31

标签: canvas react-native

我使用React-Native ART绘制一些图表,但是没有足够的文档。

<Text
  x={200}
  stroke="#000"
  font={{
    fontSize: 20,
    fontFamily: 'Arial',
    fontWeight: 100,
  }}
  text="R..ksk"
>
  React....
</Text>

enter image description here

如何在没有粗体和框的情况下绘制像“React ...”这样的简单文本。

enter image description here

1 个答案:

答案 0 :(得分:0)

我得到了答案。删除笔划并添加填充

<Text
  x={200}
  fill="#000"
  font={{
    fontSize: 20,
    fontFamily: 'Arial',
    fontWeight: 100,
  }}
>
  React....
</Text>