Loading

Flutter Text 溢出部分 ...

配置如下:

overflow: TextOverflow.ellipsis,

例子:

Flexible(
  child: new Container(
    padding: new EdgeInsets.only(right: 13.0),
    child: new Text(
      'Text largeeeeeeeeeeeeeeeeeeeeeee',
      overflow: TextOverflow.ellipsis,
      style: new TextStyle(
        fontSize: 13.0,
        fontFamily: 'Roboto',
        color: new Color(0xFF212121),
        fontWeight: FontWeight.bold,
      ),
    ),
  ),
),
posted @ 2023-02-22 15:20  ZJH_BLOGS  阅读(129)  评论(0)    收藏  举报