📜  容器中的可滚动文本 - 无论代码示例

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

代码示例1
Container(
    height: 200,
    child: SingleChildScrollView(
        child: Text(
            "Long text here which is longer than the container height")))