We use letterSpacing for spacing between letters
L i k e t h i s
What if we want word spacing in react native?
Like [space] this
We use letterSpacing for spacing between letters
L i k e t h i s
What if we want word spacing in react native?
Like [space] this
Here is my workaround. I have an inline
Text
element between the words that contains two zero-width non-breaking spaces and aletterSpacing
property.React Native treats those spaces as characters and renders the letter spacing between them, while the characters themselves don't contribute to the width of the spacing.