Flutter Multiline for text

前端 未结 8 1054
春和景丽
春和景丽 2021-02-06 22:23

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

8条回答
  •  半阙折子戏
    2021-02-06 22:48

    Best way to handle this:

    Expanded(
    child: Text(document['content'],
    textAlign: TextAlign.start,
    overflow: TextOverflow.ellipsis,
    maxLines: 20,
    ))
    

提交回复
热议问题