Search code snippets, questions, articles...

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?
0 Comments
Programming Feeds
Learn something new everyday on Devsheet