垂直视口被赋予图书馆无限高度作为返回ListView

时间:2019-06-05 21:15:18

标签: flutter

我正在尝试使用返回ListView的{​​{3}}

库的简单部分:

Widget build(BuildContext context) {
  return new Container(
    child: ListView.builder(
      itemCount: widget.timelineList.length,
      itemBuilder: (_, index) {
        return new TimelineElement(
          lineColor: widget.lineColor==null?Theme.of(context).accentColor:widget.lineColor,
          backgroundColor: widget.backgroundColor==null?Colors.white:widget.backgroundColor,
          model: widget.timelineList[index],
          firstElement: index==0,
          lastElement: widget.timelineList.length==index+1,
          controller: controller,
          headingColor: widget.headingColor,
          descriptionColor: widget.descriptionColor,
        );
      },
    ),
  );
}

现在,当我尝试用ExpandedFlexFlexible换行时,我得到了错误并且无法解决问题,将Container与{{1}一起使用}无法解决我的问题

我的代码:

height:200.0

0 个答案:

没有答案