Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们使用 letterSpacing 来表示字母之间的间距
像这样
如果我们想要 react native 中的字间距怎么办?
喜欢[空格]这个
这是我的解决方法。我Text在包含两个零宽度不间断空格和一个letterSpacing属性的单词之间有一个内联元素。
Text
letterSpacing
React Native 将这些空格视为字符并呈现它们之间的字母间距,而字符本身不会影响间距的宽度。
<Text> Like <Text style={{letterSpacing: 16}}></Text> this </Text>