我的列结构是这样的:
body: new Column(
children: <Widget>[
new TabPanel(), // row with all child text
new UrlButtonPanel(), // row with button
new Ad(), //rectangle container
new LatestNewsController(), //container with swith button
Expanded(child: new LatestNewsList()), // listview
],
)
我想让整个页面可滚动,包括 listView。现在只有 Listview 部分是可滚动的。
如何使整个页面可滚动?
用 ListView 替换 Column 使布局空白。