Text spacing - React Native
React Native has a couple of attributes to adjust text spacing:
letterSpacing
: set spacing between letterslineHeight
: set spacing between linespaddingVertical
: set spacing between paragraphs
<Text style={{
letterSpacing: 3,
lineHeight: 32,
paddingVertical: 6
}}>Appt</Text>