0

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.

mohammad
  • 2,568
  • 3
  • 20
  • 41
  • Does this answer your question? [Flutter Multiline for text](https://stackoverflow.com/questions/53811932/flutter-multiline-for-text) – Kirill Matrosov May 05 '20 at 11:53

1 Answers1

3

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.

void
  • 12,787
  • 3
  • 28
  • 42