Text spacing - Xamarin
Xamarin Forms has a couple of attributes to adjust text spacing:
CharacterSpacing
: set spacing between characters.LineHeight
: set spacing between lines.Padding
: set padding between paragraphs
You can also make a CustomRenderer
to use even more properties from native Android and iOS elements. For more information see:
<Label CharacterSpacing="3" LineHeight="32" Margin="10" Padding="10" />