Flutter 创建可滚动的TextView 视图

2 min read
Container(
    height: 200,
    child: SingleChildScrollView(
        child: Text(
            "Long text here which is longer than the container height")))