前言
在日常的开发工作中,仅仅使用ListView
、ListView.builder
等这样的滑动组件就能满足大部分的业务需求,在碰到较为复杂的滑动页面时,加上Slivers
系列中的几个常用组件也简单的实现。这也就导致了一些朋友没有较为完整的去了解Slivers
系列。那么在重识Flutter这个专栏中,预计有5篇slivers相关的文章,从组件的使用到其背后的渲染原理,让我们一起探索Slivers
的魅力吧!
视窗是什么? Sliver是什么?
相信点进这篇文章的朋友,一定会知道ListView
这样的滚动组件,滚动组件会提供一个区块,用于滚动的显示内容,但内容很多时,我们只能看到可滚动内容中的部分内容。这个就是视窗(ViewPort),也就是列表的可视区域大小。例如一个ListView
的显示区域高度为500像素,它列表项总高度可能远远超过500个像素,但是它的ViewPort仍为500像素。
那么Sliver是什么呢?我们可以通过ListView.builder()
,设置itemCount
为null,构建一个无限的列表内容,只有当我们滚动时,才会动态的去创建需要呈现在视窗中的内容。这个就是Sliver
,如果一个滚动组件支持Sliver模型
,那么这个组件会将子组件分成很多个Sliver,只有当Sliver出现在视窗中才会构建。
CustomScrollView
像ListView
、GridView
等组件,在底层实现中都有着对应的Sliver
,如SliverList
、SliverGrid
。Sliver版本的可滚动组件和非Sliver版本的可滚动组件最大的区别就是:Sliver版本的组件不包含滚动模型(Scrollable),组件自身不能滚动。
所以,如果想要使用Sliver系列的组件,就需要给它们添加滚动模型。Flutter提供了CustomScrollView
,做为Sliver系列组件运行的容器。CustomScrollView
主要的作用就是提供Viewport
和一个公共的Scrollable
,多个Sliver组件共用CustomScrollView
的Scrollable
,就达到了单一滚动的场景。
CustomScrollView
有着许多属性,其中最常用的便是slivers,用来传入Sliver组件列表。就像这样:
Scaffold(
body: CustomScrollView(
slivers: [
SliverList(/**/),
SliverGrid(/**/),
],
),
);
有了CustomScrollView
组件的帮助,实现复杂的滚动效果,好像不是那么困难。
SliverList
如果需要在一个界面创建多个列表,刚了解Flutter的朋友可能会使用Column
中包裹多个ListView
去实现。
但是这样的效果肯定不符合需求,如果想要让它们一起滚动,或添加一些复杂的动画。
那么借助SliverList
就能很简单的实现。
SliverList是Sliver Widget
的一种,作用是将Widget排列在一个List
中,使用SliverList需要定义delegate
。Sliver delegate
是用于描述使用哪种方法对组件进行渲染,通常有两种:static和builder。
在SliverList中,可以定义两种类型的delegate:
- SliverChildListDelegate:获取需要显示的组件列表。此列表中定义的组件将被立即呈现。不会有任何延迟加载。
- SliverChildBuilderDelegate:获取将延迟创建的小部件列表。这意味着随着用户滚动,剩余的组件才会开始渲染。
可以简单的把ListView理解为:CustomScrollView + SliverList + SliverChildListDelegate;把ListView.Builder理解为:CustomScrollView + SliverList + SliverChildBuilderDelegate。
在了解了SliverList需要定义的delegate后,那么使用它就和使用ListView一样简单:
CustomScrollView(
slivers: [
SliverList(
delegate: SliverChildListDelegate([
Container(
height: 50,
color: Colors.primaries[0],
),
]),
),
SliverList(
delegate: SliverChildBuilderDelegate((BuildContext ctx, int index) {
return Container(
height: 50,
color: Colors.primaries[index % Colors.primaries.length],
);
}, childCount: 5),
),
],
),
SliverGrid
SliverGrid
与GridView
一样,将组件以一行两个或一行多个的形式排列。它除了和SliverList一样需要定义一个正常的delegate之外,还需要传入gridDelegate
,用于描述每行如何显示组件。就像这样:每行最多4个,每个组件的宽度是高度的1.5倍。
SliverGrid(
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 4,
crossAxisSpacing: 5,
mainAxisSpacing: 3,
childAspectRatio: 1.5),
delegate:
SliverChildBuilderDelegate((BuildContext context, int index) {
return Container(
color: Colors.primaries[index % Colors.primaries.length],
);
}, childCount: 20),
)
在SliverGrid中可以定义两种gridDelegate:
SliverGridDelegateWithFixedCrossAxisCount:指定一行中有多少列,使用它会自动扩展到屏幕最大宽度。
- crossAxisCount属性是列数
- childAspectRatio属性是宽高比
- XXXSpacing属性是指每个item之间的边距
SliverGridDelegateWithMaxCrossAxisExtent: 可以指定列的宽度
- maxCrossAxisExtent 是列中的最大宽度
可以把GridView.builder理解为:CustomScrollView + SliverGrid + SliverChildBuilderDelegate + gridDelegate
遇到一些简单的需求,也可以使用缩写组件:
- SliverGrid.count :SliverGrid + SliverChildListDelegate + SliverGridDelegateWithFixedCrossAxisCount
- SliverGrid.extent: SliverGrid + SliverChildListDelegate + SliverGridDelegateWithMaxCrossAxisExtent
SliverGrid.count(
crossAxisCount: 3,
children: [
...List.generate(
3,
(index) => Container(
color: Colors.primaries[index % Colors.primaries.length],
),
)
],
),
SliverGrid.extent(
maxCrossAxisExtent: 100,
children: [
...List.generate(
9,
(index) => Container(
color: Colors.primaries[index % Colors.primaries.length],
),
)
],
)
SliverGrid与SliverList一起使用即可获得这样的效果:
SliverAppBar
AppBar
是大部分应用程序很重要的组件,它位于App
的顶部,主要控制一些可操作按钮。在Flutter中,常在Scaffold
下使用AppBar
组件。那么什么是SliverAppBar
呢?SliverAppBar Widget是 Flutter 中用于兼容 CustomScrollView的,它与AppBar组件相同,意味着它具有AppBar的所有属性,如:title
、actions
、leading
,但它也有一些额外的参数,如pinned
, floating
, snap
,expandedHeight
用于自定义AppBar的行为。SliverAppBar通常作为CustomScrollView slivers中的第一个组件。
Scaffold(
body: CustomScrollView(
slivers: [
SliverAppBar(
title: Text("Hello SliverAppBar & Taxze"),
actions: <Widget>[
IconButton(onPressed: () => null, icon: const Icon(Icons.add))
],
),
],
),
)
这就是一个很经典的Material
应用程序的AppBar
。
SliverAppBar属性众多,与AppBar相同的属性在本文就不过多介绍,主要讲解其特有的属性。
expandedHeight
该属性定义了AppBar完全展开时的大小,高度会随着向下滚动而缩小。
SliverAppBar(
title: Text("Hello SliverAppBar & Taxze"),
expandedHeight: 200,
actions: <Widget>[
IconButton(onPressed: () => null, icon: const Icon(Icons.add))
],
),
pinned
该属性用于确定当用户向下滚动时,AppBar在屏幕上是否保持可见。
SliverAppBar(
title: Text("Hello SliverAppBar & Taxze"),
expandedHeight: 200,
pinned: true,
actions: <Widget>[
IconButton(onPressed: () => null, icon: const Icon(Icons.add))
],
),
floating
该属性如果设置为true,则AppBar将在用户向上滚动时立即可见。如果为false那么只有当滚动到顶部才能可见。
SliverAppBar(
title: Text("Hello SliverAppBar & Taxze"),
expandedHeight: 200,
floating: true,
actions: <Widget>[
IconButton(onPressed: () => null, icon: const Icon(Icons.add))
],
),
snap
该属性如果设置为true,那么用户向上滚动一点,即可见完整的AppBar。使用该属性需要将floating设置为true。
SliverAppBar(
title: Text("Hello SliverAppBar & Taxze"),
expandedHeight: 200,
floating: true,
snap: true,
actions: <Widget>[
IconButton(onPressed: () => null, icon: const Icon(Icons.add))
],
),
在效果图中能明显看出snap和floating的明显区别。
flexibleSpace
该属性用于给AppBar提供background
和collapseMode
,还有可以随用户滚动而改变位置的title
。
SliverAppBar(
expandedHeight: 200,
flexibleSpace: FlexibleSpaceBar(
title: Text("First FlexibleSpace",style: TextStyle(color: Colors.red),),
background: Image.network(
"https://p3-passport.byteimg.com/img/user-avatar/af5f7ee5f0c449f25fc0b32c050bf100~180x180.awebp",
fit: BoxFit.cover),
),
actions: <Widget>[
IconButton(onPressed: () => null, icon: const Icon(Icons.add))
],
),
当用户向上滚动时,就会得到视差效果,这是因为collapseMode
,它有三种模式:parallax
, pin
, none
。collapseMode
默认为CollapseMode.parallax
,如果将其设置为pin
,那么你将不会得到视差效果,只有简单的淡入淡出。
flexibleSpace: FlexibleSpaceBar(
title: Text("First FlexibleSpace",style: TextStyle(color: Colors.black),),
collapseMode: CollapseMode.pin,
background: Image.network(
"https://p3-passport.byteimg.com/img/user-avatar/af5f7ee5f0c449f25fc0b32c050bf100~180x180.awebp",
fit: BoxFit.cover),
),
stretch
使用该属性前,需要先设置CustomScrollView
的physics
,给它一个弹性效果,在滚动到内容尽头时仍然运行滚动。stretch
属性设置为true时,会让 FlexibleSpaceBar 与外部组件同步滚动。
SliverAppBar(
expandedHeight: 200,
pinned: true,
stretch: true,
flexibleSpace: FlexibleSpaceBar(
title: Text("First FlexibleSpace",style: TextStyle(color: Colors.black),),
// collapseMode: CollapseMode.pin,
background: Image.network(
"https://p3-passport.byteimg.com/img/user-avatar/af5f7ee5f0c449f25fc0b32c050bf100~180x180.awebp",
fit: BoxFit.cover),
),
actions: <Widget>[
IconButton(onPressed: () => null, icon: const Icon(Icons.add))
],
),
stretchModes
当stretch
属性设置为true
时,此时会触发FlexibleSpaceBar
容器放大导致的背景图片变化的一个动画效果->stretchModes
。stretchModes
有三种属性:
- zoomBackground默认效果,放大背景图片
- blurBackground模糊背景图片
- fadeTitle淡化title
flexibleSpace: FlexibleSpaceBar(
title: Text("First FlexibleSpace",style: TextStyle(color: Colors.black),),
// collapseMode: CollapseMode.pin,
background: Image.network(
"https://p3-passport.byteimg.com/img/user-avatar/af5f7ee5f0c449f25fc0b32c050bf100~180x180.awebp",
fit: BoxFit.cover),
stretchModes: [
// StretchMode.fadeTitle,
// StretchMode.blurBackground,
StretchMode.zoomBackground
],
),
作者:编程的平行世界
链接:https://juejin.cn/post/7197881799346307128