John Macmillan
John Macmillan

Reputation: 11

How do I remove the spacing between two texts in Flutter?

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:

Please see the screenshot here:

Upvotes: 1

Views: 2258

Answers (3)

Lakmal Fernando
Lakmal Fernando

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

Umer Farooq Khan
Umer Farooq Khan

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

Tayo.dev
Tayo.dev

Reputation: 1656

Remove the \n in \nPosts Text Widget

Upvotes: 1

Related Questions