GitHub连接
滑动曝光埋点框架,支持SliverList、SliverGrid
滑动曝光埋点用于滑动列表组件中的模块曝光,例如Flutter中的SliverList
、SliverGrid
。 当SliverList
中的某一个行(或列)移动到ViewPort
中,并且显示比例超过一定阈值时,我们把这个事件记为一次滑动曝光事件。
当然我们对滑动曝光有一些额外的要求:
滑动曝光的核心难点是计算组件的露出比例。也是说我们需要知道ListView
中的组件的总高度
、当前显示高度
。 这两个高度做除法就可以得出比例。
组件的总高度可以在renderObject
中获取。我们可以获取renderObject
下的size
属性,其中包含了组件的长宽。
显示高度可以从SliverGeometry.paintExtent
中获取。
dependencies:
flutter_sliver_tracker: ^1.0.0
复制代码
import 'package:xm_sliver_listener/flutter_sliver_tracker.dart';
复制代码
3.1 通过ScrollViewListener
捕获滚动事件,ScrollViewListener
必须包裹在CustomScrollView
之上。
class _MyHomePageState extends State {
@override
Widget build(BuildContext context) {
return Scaffold(
// 通过ScrollViewListener捕获滚动事件
body: ScrollViewListener(
child: CustomScrollView(
slivers: [
],
),
),
);
}
}
复制代码
3.2 在SliverToBoxAdapter
中监听滚动停止事件,并计算显示比例
class _MyHomePageState extends State {
@override
Widget build(BuildContext context) {
return Scaffold(
// 通过ScrollViewListener捕获滚动事件
body: ScrollViewListener(
child: CustomScrollView(
slivers: [
SliverToBoxAdapter(
// 监听停止事件,如果在页面上展示比例,可以自行setState
child: SliverEndScrollListener(
onScrollInit: (SliverConstraints constraints, SliverGeometry geometry) {
// 显示高度 / sliver高度
Fluttertoast.showToast(msg: "展示比例:${geometry.paintExtent / geometry.scrollExtent}");
},
onScrollEnd: (ScrollEndNotification notification,
SliverConstraints constraints,
SliverGeometry geometry) {
Fluttertoast.showToast(msg: "展示比例:${geometry.paintExtent / geometry.scrollExtent}");
},
child: Container(
height: 300,
color: Colors.amber,
),
),
),
],
),
),
);
}
}
复制代码
3.3 在SliverList
和SliverGrid
中监听滚动停止事件,并计算显示比例
class _MyHomePageState extends State {
@override
Widget build(BuildContext context) {
return Scaffold(
// 通过ScrollViewListener捕获滚动事件
body: ScrollViewListener(
child: CustomScrollView(
slivers: [
SliverList(
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) {
// 监听滚动停止
return SliverMultiBoxScrollEndListener(
debounce: 1000,
child: Container(
height: 300,
color: Colors.redAccent,
child: Center(
child: Text("SliverList Item", style: TextStyle(fontSize: 30, color: Colors.white))
),
),
onScrollInit: (double itemLength, double displayedLength) {
Fluttertoast.showToast(msg: "显示高度:${displayedLength}");
},
onScrollEnd: (double itemLength, double displayedLength) {
Fluttertoast.showToast(msg: "显示高度:${displayedLength}");
},
);
},
childCount: 1
),
),
],
),
),
);
}
}
复制代码
3.4 在SliverList
和SliverGrid
中监听滚动更新事件,并计算显示比例
class _MyHomePageState extends State {
@override
Widget build(BuildContext context) {
return Scaffold(
// 通过ScrollViewListener捕获滚动事件
body: ScrollViewListener(
child: CustomScrollView(
slivers: [
SliverList(
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) {
// 监听滚动更新事件
return SliverMultiBoxScrollUpdateListener(
onScrollInit: (double percent) {
// percent 列表项显示比例
},
onScrollUpdate: (double percent) {
// percent 列表项显示比例
},
debounce: 1000,
// percent 列表项显示比例
builder: (BuildContext context, double percent) {
return Container(
height: 200,
color: Colors.amber.withAlpha((percent * 255).toInt()),
child: Center(
child: Text("SliverList Item Percent ${percent.toStringAsFixed(2)}", style: TextStyle(fontSize: 30, color: Colors.white))
),
);
},
);
},
childCount: 6
),
),
],
),
),
);
}
}
作者:SBDavid
链接:https://juejin.im/post/5e35276c6fb9a02fc90e3dfc
来源:掘金
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。