我遇到错误垂直视口被赋予了无限制的高度。我尝试使用弹性和扩展功能,但是它不起作用。
return Scaffold(
body: ListView(
children: <Widget>[
Text(
'Text',
),
StreamBuilder(
initialData: List<M>(),
stream: list,
builder: (BuildContext context, AsyncSnapshot snapshot) {
if (!snapshot.hasData) return Container(height: 1, width: 1);
... GridView.builder()
}),
],
),
);