【发布时间】:2018-04-02 19:57:26
【问题描述】:
似乎text/richtext只支持一页,如果内容超出屏幕,则无法上下滚动。有没有简单的方法来启用它? 或者我必须使用滚动小部件?
【问题讨论】:
标签: flutter
似乎text/richtext只支持一页,如果内容超出屏幕,则无法上下滚动。有没有简单的方法来启用它? 或者我必须使用滚动小部件?
【问题讨论】:
标签: flutter
Flutter 提供了很多 Scrolling Widgets documentation
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),),),
),);
}
}
【讨论】: