我正在CustomScrollView中实现SliverAppBar和SliverList。
我希望第一次向上滑动即可在不滚动条列表的情况下迅速折叠应用程序栏。 (彼得在向上滑动后应保持在列表顶部,而不是安娜)
然后用户应该可以自由滚动SliverList。
Widget build(BuildContext context) {
return CustomScrollView(
dragStartBehavior: DragStartBehavior.down,
slivers: [
SliverAppBar(
title: Text('Sliver App Bar'),
pinned: false,
floating: true,
snap: true,
expandedHeight: 500.0,
),
SliverList(
delegate: new SliverChildListDelegate(displayList),
),
],
);
}