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
I think you forgot to add overflow type.
overflow
You can use something like this:
Text( "TOP ADDED", textAlign: TextAlign.justify, overflow: TextOverflow.ellipsis, style: TextStyle(fontSize: 18.0), maxLines: 2,)