我正在尝试创建一个滚动列表小部件,它会显示一些项目,并且能够在底部添加一个向上滚动的页脚。
如果滚动列表没有占据整个高度,例如只有2个项目,页脚仍应出现在屏幕的底部。以下是我正在努力实现的一些草图
我尝试计算listview需要的垂直大小,但这意味着我需要知道构建时孩子的高度。有没有更好的办法?
修改
我正在努力实现与here完全相同的事情,但当然还有Flutter。
答案 0 :(得分:7)
您需要为此创建自定义RenderBox。由于没有小工具可以支持这种开箱即用。
SliverFillRemaining
非常接近。但它的大小/滚动行为与您期望的不同。因为,如果存在,几乎总是使Scrollable
...可滚动。
相反,我们可以复制粘贴SliverFillRemaining
的来源。并进行一些编辑
class SliverFooter extends SingleChildRenderObjectWidget {
/// Creates a sliver that fills the remaining space in the viewport.
const SliverFooter({
Key key,
Widget child,
}) : super(key: key, child: child);
@override
RenderSliverFooter createRenderObject(BuildContext context) => new RenderSliverFooter();
}
class RenderSliverFooter extends RenderSliverSingleBoxAdapter {
/// Creates a [RenderSliver] that wraps a [RenderBox] which is sized to fit
/// the remaining space in the viewport.
RenderSliverFooter({
RenderBox child,
}) : super(child: child);
@override
void performLayout() {
final extent = constraints.remainingPaintExtent - math.min(constraints.overlap, 0.0);
var childGrowthSize = .0; // added
if (child != null) {
// changed maxExtent from 'extent' to double.infinity
child.layout(constraints.asBoxConstraints(minExtent: extent, maxExtent: double.infinity), parentUsesSize: true);
childGrowthSize = constraints.axis == Axis.vertical ? child.size.height : child.size.width; // added
}
final paintedChildSize = calculatePaintOffset(constraints, from: 0.0, to: extent);
assert(paintedChildSize.isFinite);
assert(paintedChildSize >= 0.0);
geometry = new SliverGeometry(
// used to be this : scrollExtent: constraints.viewportMainAxisExtent,
scrollExtent: math.max(extent, childGrowthSize),
paintExtent: paintedChildSize,
maxPaintExtent: paintedChildSize,
hasVisualOverflow: extent > constraints.remainingPaintExtent || constraints.scrollOffset > 0.0,
);
if (child != null) {
setChildParentData(child, constraints, geometry);
}
}
}
这里我改变了一件事
maxExtent
不受约束。因为如果没有更多可用的屏幕空间,那么会对页脚强制执行0的高度。SliverGeometry
scrollExtent
来自"全屏高度"到"实际可用尺寸"。因此它实际上只填充剩余的可见空间。没有填满屏幕。scrollExtent
添加了一个最小值,等于实际的页脚高度。因此,如果视口中没有剩余空间,则可以简单地添加子项,而不会有任何间距。我们现在可以像往常一样在CustomScrollView
内使用它。
最终结果:
new CustomScrollView(
slivers: <Widget>[
new SliverFixedExtentList(
itemExtent: 42.0,
delegate: new SliverChildBuilderDelegate((context, index) {
return new SizedBox.expand(
child: new Card(),
);
}, childCount: 42),
),
new SliverFooter(
child: new Align(
alignment: Alignment.bottomCenter,
child: new Container(
height: 42.0,
color: Colors.red,
),
),
),
],
),
答案 1 :(得分:0)
像https://flutter.io/web-analogs/#setting-absolute-position之类的东西?这似乎会导致小部件停留在屏幕上的固定位置。
答案 2 :(得分:0)
这可以通过使用具有特殊约束的SingleChildScrollView
来实现,如here所述。
看下面的例子:
@override
Widget build(BuildContext context) {
return LayoutBuilder(
builder: (BuildContext context, BoxConstraints constraints) {
return SingleChildScrollView(
child: ConstrainedBox(
constraints: constraints.copyWith(
minHeight: constraints.maxHeight,
maxHeight: double.infinity,
),
child: IntrinsicHeight(
child: Column(
children: <Widget>[
Container(height: 200, color: Colors.blue),
Container(height: 200, color: Colors.orange),
Container(height: 200, color: Colors.green),
Container(height: 50, color: Colors.pink),
Expanded(
child: Align(
alignment: Alignment.bottomCenter,
child: Container(
width: double.infinity,
color: Colors.red,
padding: EdgeInsets.all(12.0),
child: Text('FOOTER', textAlign: TextAlign.center,),
),
),
),
],
),
),
),
);
}
);
}
如果将粉红色容器的高度更改为更大的值(例如500),则会看到页脚也会随着整个列表滚动。
感谢西蒙·莱特富特(Simon Lightfoot)的帮助,为我指明了正确的方向!