It looks like you looking for the height property of the TextStyle class.
Here is an example:
Text(
"Some lines of text",
style: TextStyle(
fontSize: 14.0,
height: 1.5 //You can set your custom height here
)
)
It looks like you looking for the height property of the TextStyle class.
Here is an example:
Text(
"Some lines of text",
style: TextStyle(
fontSize: 14.0,
height: 1.5 //You can set your custom height here
)
)