flutter

Add spacing between characters of Text widget Flutter

To add space between characters of words that exist inside a Text widget - the letterSpacing property can be used.

Text(
    "Lotis Mobile app",
    style: TextStyle(
        letterSpacing: 3.0, //This will all spacing between letters
    ),
)
Was this helpful?