Reputation: 41
How can i make paragraphs in flutter in a text widget? It is all just one long text and it looks stupid
What I want: Hello,
how are you?
What it is:
Hello, how are you?
Upvotes: 2
Views: 15215
Reputation: 7601
another approach, use RichText:
RichText(
text: TextSpan(
text: 'Hello,',
style: TextStyle(color: Colors.black, fontSize: 18.0),
children: <TextSpan>[
TextSpan(
text: 'how are you?',
style: TextStyle(fontWeight: FontWeight.bold, )
),
],
),
)
Upvotes: 2