我正在尝试使用返回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,
);
},
),
);
}
现在,当我尝试用Expanded
或Flex
或Flexible
换行时,我得到了错误并且无法解决问题,将Container
与{{1}一起使用}无法解决我的问题
我的代码:
height:200.0