📜  文本溢出错误flutter - Dart 代码示例

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

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