mohammad
mohammad

Reputation: 2920

multiline text in row

multiline text in row

as you can see I have an Icon at start of each text but the text can be multiline. the problem is that in row , it will be overflow and I can't create such this text.

Thanks and sorry for bad english.

Upvotes: 0

Views: 2776

Answers (1)

timilehinjegede
timilehinjegede

Reputation: 14053

You can achieve this by wrapping your Text with a Flexible Widget.

Try the code below: It works perfectly:

Flexible(
child: Text(
      'Your text here'
      ),
    ),

I hope this helps.

Upvotes: 4

Related Questions