Text spacing - Flutter
With Flutter, it is possible to set spacing in text with TextStyle
. This can be done globally in the ThemeData
or within a Text
via the style
parameter.
With the TextStyle
class you can use the following attributes for spacing in the text:
height
: set spacing between lines.letterSpacing
: set extra spacing between letters.wordSpacing
: adds extra spacing to whitespace.
TextStyle(
height: 1.5,
letterSpacing: 3.0,
wordSpacing: 5.0
);