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?
Similar Posts
- Convert text of Text widget to uppercase or lowercase in Flutter
- Add border to widget in Flutter
- Add a single widget as a sliver in Flutter
- Find number of days between two dates in Flutter or Dart
- Simple stateless widget in Flutter
- Create stateful widget in Flutter
- Center Row widget children vertically and horizontally Flutter