📜  列中的文本颤动溢出省略号不起作用 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:03.948000             🧑  作者: Mango

代码示例1
return Expanded(
    child: Container(
        child: Column(
            children: [
                Text("Your text here...",
                    overflow: TextOverflow.ellipsis
                )
            ]
        )
    )
);