I am working with Flutter and I know that letterSpacing property is useful to give some spacing between letters.
I want to give it to the whole application, I mean wherever I wrote any text in application. I want to set 1.0 letter spacing to all the text.
Is there any way to do it?
You can define a TextTheme and set a custom TextStyle for each type of text (headline1, ...).
If no Theme is provided, Flutter defines a default one for you.
However you can override or extend the default and define the letterSpacing property. I show an example for headline1 and button below.