我正在尝试在Flutter应用程序中省略文本,但无法设置。

我将 View 设计如下

Positioned(
            bottom: 20,
            left: 10,
            child: Column(
              crossAxisAlignment: CrossAxisAlignment.start,
              children: <Widget>[
                Text(
                  snapshot.data.results[index].title,
                  overflow: TextOverflow.ellipsis,
                  textAlign: TextAlign.start,
                  style: TextStyle(
                    fontSize: 20.0,
                    fontWeight: FontWeight.w600,
                    color: Colors.white,
                  ),
                ),
                Text(
                  snapshot.data.results[index].release_date,
                  style: TextStyle(
                      fontSize: 18.0,
                      fontWeight: FontWeight.w400,
                      color: Colors.white,
                      letterSpacing: 1.2),
                ),
              ],
            ))

flutter - Flutter代码中的文本溢出不起作用-LMLPHP

最佳答案

您应该使用FlexibleExpanded小部件包装文本,如下所示:

    Flexible(child:Text("Text goes here"),

有关更多信息,请尝试this链接

09-26 06:42