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.
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.
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.