Reputation: 11
I'm actually trying to clone an Insta page. How do I remove the space between two texts inside a column in Flutter pointed with a green arrow in the screenshot? The upper text "6,667" had to be bold so I had to separate it with "Posts".
Please see the screenshot here:
Upvotes: 1
Views: 2258
Reputation: 1530
for line spacing use height property in TextStyle
Text('Hello World', style: TextStyle(height: 1.0 // change this as you want
))
Upvotes: 4
Reputation: 11
The issue is in your 2nd Text("\n Posts");
Please, remove the \n from the text and it will be okay
Upvotes: 0