Leon Brey
Leon Brey

Reputation: 41

How can i make a paragraph when writing a long text in flutter?

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

Answers (2)

Jim
Jim

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

Nico
Nico

Reputation: 177

Use \n for paragraphs, like this: Text('Hello,\n\nhow are you?')

Upvotes: 5

Related Questions