我创建了一个自定义小部件,将页脚作为最后一项添加到收到的可滚动小部件中。一切正常,但我想更改创建页脚的时间。
就像ListView.builder
在滚动到屏幕上时创建项目一样,我也希望在页脚中发生这种情况。如果此自定义小部件收到一个ListView.builder
or GridView.builder
,则它们的项目在滚动到屏幕上时会被很好地创建,但页脚是第一次创建的,即使它不在屏幕上也是如此。
这是自定义小部件,其中接收到的小部件是widget.child
( ScrollView
),页脚是widget.footer
( Widget
)。
@override
Widget build(BuildContext context) {
return Scrollable(
controller: widget.child.controller,
axisDirection: widget.child.getDirection(context),
viewportBuilder: (context, offset) {
return ShrinkWrappingViewport(
axisDirection: widget.child.getDirection(context),
offset: offset,
slivers: widget.child.buildSlivers(context)
..add(
SliverList(
delegate: SliverChildBuilderDelegate((context, index) {
print('footer');
return widget.footer;
}, childCount: 1))),
);
},
);
}
这就是我使用它的方式:
ScrollableWithFooter(
child: ListView.builder(
itemCount: 50,
itemBuilder: (context, index) {
print(index);
return SizedBox(height: 400, child: Text('Item $index'));
},
),
footer: Center(child: Text('Footer')),
)
有 50 个列表,我看到屏幕上的第一个项目,这是打印的输出:
I/flutter (28472): 0
I/flutter (28472): 1
I/flutter (28472): 2
I/flutter (28472): footer
当我开始滚动时,其他项目在创建时开始打印它们的索引:
I/flutter (28472): 2
I/flutter (28472): footer
I/flutter (28472): 3
I/flutter (28472): 4
I/flutter (28472): 5
这适用于项目,但不适用于页脚。我希望在到达列表末尾时创建页脚,就像其他项目一样。怎样才能做到这一点?
请注意,在屏幕上一切正常,页脚出现在列表的末尾。只是它的创造发生在它应该发生之前。
这是我尝试过的,但它不起作用:
@override
Widget build(BuildContext context) {
return Scrollable(
controller: widget.child.controller,
axisDirection: widget.child.getDirection(context),
viewportBuilder: (context, offset) {
List<Widget> slivers = widget.child.buildSlivers(context);
return ShrinkWrappingViewport(
axisDirection: widget.child.getDirection(context),
offset: offset,
slivers: [
SliverList(
delegate: SliverChildBuilderDelegate((context, index) {
if (index < slivers.length) {
return slivers[index]; // <- Here seems to be the problem
}
print('footer');
return widget.footer;
}, childCount: slivers.length + 1))
],
);
},
);
}
我收到此错误:
The following assertion was thrown building NotificationListener<KeepAliveNotification>:
I/flutter (28472): A RenderRepaintBoundary expected a child of type RenderBox but received a child of type
I/flutter (28472): RenderSliverPadding.