All I need is my text to be multi-line. Am giving the property of maxLines but its still getting RenderFlex overflowed error to the right as the next i
maxLines
RenderFlex
Just wrap your text widget with Expanded as below
Expanded( child: Text('data', maxLines: 4, overflow: TextOverflow.ellipsis, textDirection: TextDirection.rtl, textAlign: TextAlign.justify,), ),