如何使文字或richtext可以在flutter中滚动?

时间:2018-04-02 19:57:27

标签: flutter

看来text / richtext只支持一个页面,如果内容超出屏幕,则无法向上/向下滚动。是否有一种简单的方法来启用它? 或者我必须使用滚动小部件?

1 个答案:

答案 0 :(得分:3)

Flutter提供了很多滚动窗口小部件documentation

示例:SingleChildScrollView

enter image description here

class mytext extends StatelessWidget {
var randomtext="....";
@override
Widget build(BuildContext context) {
return new Container(child: new Scaffold(
  appBar: new AppBar(),
  body: new SingleChildScrollView(child: 
    new Text(randomtext,style: new TextStyle(fontSize: 30.0),),),
),);
 }
}